* Massive patch failures
@ Cheryl Homiak
` Frank Carmickle
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Cheryl Homiak @ UTC (permalink / raw)
To: speakup
I hope you all will be patient with me; this is my first time to compile a
kernel. I have debian. I downloaded the tar.gz file of linux-2.2.19 as
well as speakup-0.10a.tar.gz. I currently am running 2.2.17 with
speakup-0.09 just for reference. Making sure there was no linux tree in
/usr/src I moved both files from my home directory to /usr/src and
unpacked them. After reading the files with
instructions--also am referring to the howto--I did a cd into
speakup-0.10a and typed ./install. It appears that 8 out of 8 hunks
failed first and then later--I assume the next step--3 out of 5 failed.
This would lead me to believe that I am missing something glaringly
obvious and, no matter how embarrassing, I would like it if somebody
pointed out to me what I have neglected to do. Oh, I also removed
the linux and speakup-0.10a directories and tried again with linux
and speakup-0.10, unpacking all over again. Exactly the same thing
happened as before.
Thanks for any help.
Cheryl
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: Massive patch failures Massive patch failures Cheryl Homiak @ ` Frank Carmickle ` Cheryl Homiak ` Kirk Reiser ` Shaun Oliver 2 siblings, 1 reply; 8+ messages in thread From: Frank Carmickle @ UTC (permalink / raw) To: speakup Hi Cheryl Looks like you don't have much of a build environment. We would need to see the output of ./install. This can be achieved by the following command. ./install <install.log 2>&1 If you could send this output to the list we can certainly let you know what it is that you need to get sme kernel compiling joy! You may also want to stop by the reflector. One of us will surely be around there to help. Frank On Mon, 14 May 2001, Cheryl Homiak wrote: > I hope you all will be patient with me; this is my first time to compile a > kernel. I have debian. I downloaded the tar.gz file of linux-2.2.19 as > well as speakup-0.10a.tar.gz. I currently am running 2.2.17 with > speakup-0.09 just for reference. Making sure there was no linux tree in > /usr/src I moved both files from my home directory to /usr/src and > unpacked them. After reading the files with > instructions--also am referring to the howto--I did a cd into > speakup-0.10a and typed ./install. It appears that 8 out of 8 hunks > failed first and then later--I assume the next step--3 out of 5 failed. > This would lead me to believe that I am missing something glaringly > obvious and, no matter how embarrassing, I would like it if somebody > pointed out to me what I have neglected to do. Oh, I also removed > the linux and speakup-0.10a directories and tried again with linux > and speakup-0.10, unpacking all over again. Exactly the same thing > happened as before. > Thanks for any help. > > Cheryl > > > > _______________________________________________ > Speakup mailing list > Speakup@braille.uwo.ca > http://speech.braille.uwo.ca/mailman/listinfo/speakup > -- Frank Carmickle phone: 412 761-9568 email: frankiec@dryrose.com ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures ` Frank Carmickle @ ` Cheryl Homiak ` Gregory Nowak 0 siblings, 1 reply; 8+ messages in thread From: Cheryl Homiak @ UTC (permalink / raw) To: speakup Ok, here's my install.log but it doesn't tell a lot, so I'm also inserting my /usr/src/linux/scripts/lxdialog/*.rej files. Enjoy! Patching version v22 Creating .orig files [....................] done. Patching files [ppppppppppppppppppp8 out of 8 hunks FAILED -- saving rejects to /usr/src/linux/scripts/lxdialog/checklist.c.rej p3 out of 5 hunks FAILED -- saving rejects to /usr/src/linux/scripts/lxdialog/menubox.c.rej ] done. Copying files [ccccc] done. .rej file for first batch of fails: 8 out of 8 *************** *** 269,275 **** print_buttons (dialog, height, width, 0); while (key != ESC) { - key = wgetch(dialog); if (key < 256 && isalpha(key)) key = tolower(key); --- 273,279 ---- print_buttons (dialog, height, width, 0); while (key != ESC) { + key = wgetch(menu); if (key < 256 && isalpha(key)) key = tolower(key); *************** *** 372,379 **** print_arrows(dialog, item_no, scroll, box_y, box_x+item_x+1, menu_height); - wnoutrefresh (menu); - wrefresh (dialog); continue; /* wait for another key press */ } --- 376,383 ---- print_arrows(dialog, item_no, scroll, box_y, box_x+item_x+1, menu_height); + wnoutrefresh (dialog); + wrefresh (menu); continue; /* wait for another key press */ } *************** *** 386,392 **** ? 2 : (button > 2 ? 0 : button); print_buttons(dialog, height, width, button); - wrefresh (dialog); break; case ' ': case 's': --- 390,396 ---- ? 2 : (button > 2 ? 0 : button); print_buttons(dialog, height, width, button); + wrefresh (menu); break; case ' ': case 's': Second .rej file: 3 out of 5 failed *************** *** 51,56 **** mvwaddch(win, choice, item_x, item[0]); wattrset (win, selected ? item_selected_attr : item_attr); waddstr (win, (char *)item+1); } /* --- 51,60 ---- mvwaddch(win, choice, item_x, item[0]); wattrset (win, selected ? item_selected_attr : item_attr); waddstr (win, (char *)item+1); + if (selected) { + wmove (win, choice, check_x+1); + wrefresh (win); + } } /* *************** *** 104,111 **** print_button (dialog, "Select", y, x, selected == 0); print_button (dialog, " Help ", y, x + 14, selected == 1); - wmove(dialog, y, x+1 + 14*selected); - wrefresh (dialog); } /* --- 108,115 ---- print_button (dialog, "Select", y, x, selected == 0); print_button (dialog, " Help ", y, x + 14, selected == 1); + /* wmove(dialog, y, x+1 + 14*selected); + wrefresh (dialog);*/ } /* *************** *** 215,221 **** print_buttons(dialog, height, width, 0); while (key != ESC) { - key = wgetch (dialog); for (i = 0; i < max_choice; i++) if (toupper(key) == toupper(items[(scroll+i)*3+1][0])) --- 219,225 ---- print_buttons(dialog, height, width, 0); while (key != ESC) { + key = wgetch (list); for (i = 0; i < max_choice; i++) if (toupper(key) == toupper(items[(scroll+i)*3+1][0])) *************** *** 245,251 **** print_arrows(dialog, choice, item_no, scroll, box_y, box_x + check_x + 5, list_height); - wrefresh (dialog); continue; /* wait for another key press */ } else --- 249,255 ---- print_arrows(dialog, choice, item_no, scroll, box_y, box_x + check_x + 5, list_height); + wnoutrefresh (dialog); continue; /* wait for another key press */ } else *************** *** 273,279 **** print_arrows(dialog, choice, item_no, scroll, box_y, box_x + check_x + 5, list_height); - wrefresh (dialog); continue; /* wait for another key press */ } else --- 277,283 ---- print_arrows(dialog, choice, item_no, scroll, box_y, box_x + check_x + 5, list_height); + wnoutrefresh (dialog); continue; /* wait for another key press */ } else *************** *** 288,294 **** print_item (list, items[(scroll + choice) * 3 + 1], status[scroll + choice], choice, TRUE); wnoutrefresh (list); - wrefresh (dialog); } continue; /* wait for another key press */ } --- 292,298 ---- print_item (list, items[(scroll + choice) * 3 + 1], status[scroll + choice], choice, TRUE); wnoutrefresh (list); + wnoutrefresh (dialog); } continue; /* wait for another key press */ } *************** *** 306,312 **** ? 1 : (button > 1 ? 0 : button); print_buttons(dialog, height, width, button); - wrefresh (dialog); break; case 'S': case 's': --- 310,316 ---- ? 1 : (button > 1 ? 0 : button); print_buttons(dialog, height, width, button); + wnoutrefresh (dialog); break; case 'S': case 's': *************** *** 329,335 **** } } wnoutrefresh (list); - wrefresh (dialog); for (i = 0; i < item_no; i++) { if (status[i]) { --- 333,339 ---- } } wnoutrefresh (list); + wnoutrefresh (dialog); for (i = 0; i < item_no; i++) { if (status[i]) { Let me know if other files would be helpful. I may come on the reflector later today as I am having sound card problems you guys might be able to help with. Thanks. Cheryl ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures ` Cheryl Homiak @ ` Gregory Nowak 0 siblings, 0 replies; 8+ messages in thread From: Gregory Nowak @ UTC (permalink / raw) To: speakup It looks like speakup should work just fine despite of theese if you compile the kernel with it. However, let somebody who knows more confirm or disagree with this asessment. Greg ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures Massive patch failures Cheryl Homiak ` Frank Carmickle @ ` Kirk Reiser ` Cheryl Homiak ` Shaun Oliver 2 siblings, 1 reply; 8+ messages in thread From: Kirk Reiser @ UTC (permalink / raw) To: speakup Hi Cheryl: I am not sure what is the problem here. When you unpacked the tar ball did it create a directory called linux in /usr/src? I am also not sure if v-0.10a will work with 2.2.19. You might try going to the speakup web site and getting README.cvs and checkout. That will bring you up-to-date with the current speakup code which has gone through significant changes since the v-0.10 release. It isn't really any more involved than using the tar ball, most everything is done for you. Kirk -- Kirk Reiser The Computer Braille Facility e-mail: kirk@braille.uwo.ca University of Western Ontario phone: (519) 661-3061 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures ` Kirk Reiser @ ` Cheryl Homiak ` Kirk Reiser 0 siblings, 1 reply; 8+ messages in thread From: Cheryl Homiak @ UTC (permalink / raw) To: speakup Ok, I'll get the cvs file and read it. I'm a little confused though; I thought the 0.10a was supposed to work on 2.2.18 and above. Why would 2.2.18 be an exception? Cheryl ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures ` Cheryl Homiak @ ` Kirk Reiser 0 siblings, 0 replies; 8+ messages in thread From: Kirk Reiser @ UTC (permalink / raw) To: speakup Hi Again Cheryl: After looking at your install output I don't think you have anything to worry about. Those patches which failed are because the pieces which failed have been included in the normal kernel code. I just haven't had time to update the cvs yet. You can just continue from that point with a make oldconfig and so forth. They are all to do with the make menuconfig which shouldn't affect the general compilation of the system. Kirk -- Kirk Reiser The Computer Braille Facility e-mail: kirk@braille.uwo.ca University of Western Ontario phone: (519) 661-3061 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Massive patch failures Massive patch failures Cheryl Homiak ` Frank Carmickle ` Kirk Reiser @ ` Shaun Oliver 2 siblings, 0 replies; 8+ messages in thread From: Shaun Oliver @ UTC (permalink / raw) To: speakup I believe that your problem may lie in the fact that you did not upgrade your kernel source to start with. Might I suggest you do this first and then get back to us if it fails again? Shaun.. "Has anyone ever tasted an "END"? Are they really bitter?" EMAIL: shauno@goanna.net.au ICQ: 76958435 YAHOO ID: blindman01_2000 IRC NICK/SERVER: |3|1ndm4n on #aussiefriends on www.jong.com:6667 On Mon, 14 May 2001, Cheryl Homiak wrote: > I hope you all will be patient with me; this is my first time to compile a > kernel. I have debian. I downloaded the tar.gz file of linux-2.2.19 as > well as speakup-0.10a.tar.gz. I currently am running 2.2.17 with > speakup-0.09 just for reference. Making sure there was no linux tree in > /usr/src I moved both files from my home directory to /usr/src and > unpacked them. After reading the files with > instructions--also am referring to the howto--I did a cd into > speakup-0.10a and typed ./install. It appears that 8 out of 8 hunks > failed first and then later--I assume the next step--3 out of 5 failed. > This would lead me to believe that I am missing something glaringly > obvious and, no matter how embarrassing, I would like it if somebody > pointed out to me what I have neglected to do. Oh, I also removed > the linux and speakup-0.10a directories and tried again with linux > and speakup-0.10, unpacking all over again. Exactly the same thing > happened as before. > Thanks for any help. > > Cheryl > > > > _______________________________________________ > Speakup mailing list > Speakup@braille.uwo.ca > http://speech.braille.uwo.ca/mailman/listinfo/speakup > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~ UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
Massive patch failures Cheryl Homiak
` Frank Carmickle
` Cheryl Homiak
` Gregory Nowak
` Kirk Reiser
` Cheryl Homiak
` Kirk Reiser
` Shaun Oliver
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).