public inbox for speakup@linux-speakup.org
 help / color / mirror / Atom feed
* Re: recompiling kernel
   recompiling kernel Alex Snow
@  ` Doug
     ` Adam Myrow
   ` Chuck Hallenbeck
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 9+ messages in thread
From: Doug @  UTC (permalink / raw)
  To: speakup

make oldconfig might yield some strange results with
a new kernel rev, since stuff changes. When I do a
kernel upgrade, I do

make mrproper

Which makes sure there are no old deps and stuff

make config
make bzImage
make modules
make modules_install

I do used make oldconfig if I'm still on the same
kernel rev, but it's a good idea to do mrproper,
and using oldconfig with a new kernel might not
be a good idea.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   recompiling kernel Alex Snow
   ` Doug
@  ` Chuck Hallenbeck
   ` Gregory Nowak
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Chuck Hallenbeck @  UTC (permalink / raw)
  To: speakup

You did not use an upper case 'I' in bzImage


-- 
The Moon is Waning Crescent (29% of Full)
So visit me sometime at http://www.mhonline.net/~chuckh
My public key is also posted there.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   recompiling kernel Alex Snow
   ` Doug
   ` Chuck Hallenbeck
@  ` Gregory Nowak
   ` Ameer Armaly
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Gregory Nowak @  UTC (permalink / raw)
  To: speakup

You should be doing "make bzImage" (note the capitalization of bzImage).

Greg


On Mon, Jun 23, 2003 at 03:52:40PM +0000, Alex Snow wrote:
> Hi All.  I've decided to upgrade my kernel to a 2.4.20 from 2.4.17.  I grabbed the linux-2.4.20.tar.bz2 package from ftp.kernel .org and untared it under /usr/src and simlinked it to /usr/src/2linux.  I patched speakup in, and then did a make oldconfig.  After that was finished I ran make dep.  then I did make modules.  but when I went to run make bzimage make told me that bzimage was an invalid target.  what am I doing wrong?


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   recompiling kernel Alex Snow
                   ` (2 preceding siblings ...)
   ` Gregory Nowak
@  ` Ameer Armaly
     ` Alex Snow
   ` Lorenzo Prince
   ` Janina Sajka
  5 siblings, 1 reply; 9+ messages in thread
From: Ameer Armaly @  UTC (permalink / raw)
  To: speakup

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

had the same thing.
It's a capital I.
Btw, what do you have to do to get speakup to appear in the kernel config? I can get it to appear sometimes, but not in others...
  ----- Original Message ----- 
  From: Alex Snow 
  To: speakup@braille.uwo.ca 
  Sent: Monday, June 23, 2003 11:52 AM
  Subject: recompiling kernel


  Hi All.  I've decided to upgrade my kernel to a 2.4.20 from 2.4.17.  I grabbed the linux-2.4.20.tar.bz2 package from ftp.kernel .org and untared it under /usr/src and simlinked it to /usr/src/2linux.  I patched speakup in, and then did a make oldconfig.  After that was finished I ran make dep.  then I did make modules.  but when I went to run make bzimage make told me that bzimage was an invalid target.  what am I doing wrong?

[-- Attachment #2: Type: text/html, Size: 1887 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* recompiling kernel
@  Alex Snow
   ` Doug
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Alex Snow @  UTC (permalink / raw)
  To: speakup

[-- Attachment #1: Type: text/plain, Size: 432 bytes --]

Hi All.  I've decided to upgrade my kernel to a 2.4.20 from 2.4.17.  I grabbed the linux-2.4.20.tar.bz2 package from ftp.kernel .org and untared it under /usr/src and simlinked it to /usr/src/2linux.  I patched speakup in, and then did a make oldconfig.  After that was finished I ran make dep.  then I did make modules.  but when I went to run make bzimage make told me that bzimage was an invalid target.  what am I doing wrong?

[-- Attachment #2: Type: text/html, Size: 789 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   ` Doug
@    ` Adam Myrow
  0 siblings, 0 replies; 9+ messages in thread
From: Adam Myrow @  UTC (permalink / raw)
  To: speakup

Well, I've never had any trouble with "make oldconfig."  In fact, I backup
the ".config" file whenever I make a new kernel to another place.  Then, I
unpack the new kernel and drop the .config file in place.  The only time I
ever do the configuration from scratch is if I were to go from one major
version to another.  For example, from a 2.2 to a 2.4 kernel.  Otherwise,
I go ahead and run through the "make oldconfig" and answer any questions
it asks.  I then run "make menuconfig" to make sure everything is still in
place.  I then do the rest.  Never a problem yet.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   ` Ameer Armaly
@    ` Alex Snow
  0 siblings, 0 replies; 9+ messages in thread
From: Alex Snow @  UTC (permalink / raw)
  To: speakup

[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]

grrrrrrr! I thought it was something I did wrong and went and rm -r'ed the entire kernel sourcetree...took a day to compile and all. :-(
  ----- Original Message ----- 
  From: Ameer Armaly 
  To: speakup@braille.uwo.ca 
  Sent: Monday, June 23, 2003 3:37 PM
  Subject: Re: recompiling kernel


  had the same thing.
  It's a capital I.
  Btw, what do you have to do to get speakup to appear in the kernel config? I can get it to appear sometimes, but not in others...
    ----- Original Message ----- 
    From: Alex Snow 
    To: speakup@braille.uwo.ca 
    Sent: Monday, June 23, 2003 11:52 AM
    Subject: recompiling kernel


    Hi All.  I've decided to upgrade my kernel to a 2.4.20 from 2.4.17.  I grabbed the linux-2.4.20.tar.bz2 package from ftp.kernel .org and untared it under /usr/src and simlinked it to /usr/src/2linux.  I patched speakup in, and then did a make oldconfig.  After that was finished I ran make dep.  then I did make modules.  but when I went to run make bzimage make told me that bzimage was an invalid target.  what am I doing wrong?

[-- Attachment #2: Type: text/html, Size: 2875 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   recompiling kernel Alex Snow
                   ` (3 preceding siblings ...)
   ` Ameer Armaly
@  ` Lorenzo Prince
   ` Janina Sajka
  5 siblings, 0 replies; 9+ messages in thread
From: Lorenzo Prince @  UTC (permalink / raw)
  To: speakup

The correct command is make bzImage.  The i should be capatalized.  This 
will solve your problem.

Lorenzo

-- 
Linux: Because a PC is a terrible thing to waste.
(By komarimf@craft.camp.clarkson.edu, Mark Komarinski)



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: recompiling kernel
   recompiling kernel Alex Snow
                   ` (4 preceding siblings ...)
   ` Lorenzo Prince
@  ` Janina Sajka
  5 siblings, 0 replies; 9+ messages in thread
From: Janina Sajka @  UTC (permalink / raw)
  To: speakup

You forgot to capitalize the 'i' in bzImage in your email note below.
Did you also forget that in issuing the make command? If so, there's
your answer.

Alex Snow writes:
> From: "Alex Snow" <alex_snow@h14me.homelinux.net>
> 
>    Hi All.  I've decided to upgrade my kernel to a 2.4.20 from 2.4.17.  I
>    grabbed the linux-2.4.20.tar.bz2 package from ftp.kernel .org and untared
>    it under /usr/src and simlinked it to /usr/src/2linux.  I patched speakup
>    in, and then did a make oldconfig.  After that was finished I ran make
>    dep.  then I did make modules.  but when I went to run make bzimage make
>    told me that bzimage was an invalid target.  what am I doing wrong?

-- 
	
				Janina Sajka, Director
				Technology Research and Development
				Governmental Relations Group
				American Foundation for the Blind (AFB)

Email: janina@afb.net		Phone: (202) 408-8175


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~ UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
 recompiling kernel Alex Snow
 ` Doug
   ` Adam Myrow
 ` Chuck Hallenbeck
 ` Gregory Nowak
 ` Ameer Armaly
   ` Alex Snow
 ` Lorenzo Prince
 ` Janina Sajka

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).