Operating System - Linux
1752735 Members
5673 Online
108789 Solutions
New Discussion юеВ

Re: bzImage cannot create

 
Javier Juarez
Frequent Advisor

bzImage cannot create

Hi!
I need recompile the kernel from 2.4.7-9 to 2.4.18 in a HP Workstation I2000 with Red Hat 7.1, and the command "make bzImage" display "make: *** No rule to make target bzImage stop"

Any idea?

5 REPLIES 5
Craig Kelley
Valued Contributor

Re: bzImage cannot create

What directory are you in when you type this?
Javier Juarez
Frequent Advisor

Re: bzImage cannot create

Hi Craig
I am in the correct directory to compile the kernel (/usr/src/linux)
Thanks for your attention...
Jochen Heuer
Respected Contributor

Re: bzImage cannot create

Hi!

What kernel packages have you installed? Only kernel and kernel -headers? You need the kernel-source package also ... Or do you want to use the 'Linus'-kernel from www.kernel.org? If so are you in the correct directory where you have untar'ed the kernel sources?

Have fun,

Jochen
Well, yeah ... I suppose there's no point in getting greedy, is there?
I_M
Honored Contributor

Re: bzImage cannot create

Hi

"make: *** No rule to make target bzImage stop" message shows that
your Makefile doesn't have make "bzImage" entry.

But this file should be packed in side of the kernel soruce pkg.

Did you do,
# cd /usr/src/linux
# make mrproper
# make xconfig (menuconfig or config)
# make dep
# make clean
then
# make bzImage

or just #make bzImage ?

Good luck

Javier Juarez
Frequent Advisor

Re: bzImage cannot create

Hello Masanari!
Yes I do this steps
cd /usr/src/linux
Make mrporper
make xconfig
make dep
make clean


And, according to red hat support, because this case is for a itanim server

make compressed
strip compressed ...
gzip compressed ...

But no good results
I'll keep trying... thanks for your help..