2003-09-29 04:55:34

by Reg Clemens

[permalink] [raw]
Subject: Test6: still an error in 'make install'

Here is the log file for the end of my build and install of -test6

---

...
BUILD arch/i386/boot/bzImage
Root device is (3, 7)
Boot sector 512 bytes.
Setup is 2544 bytes.
System is 1845 kB
Kernel: arch/i386/boot/bzImage is ready

[root@orion linux-2.6.0-test6]# make modules
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date.
Building modules, stage 2.
MODPOST

[root@orion linux-2.6.0-test6]# make modules_install
Warning: you may need to install module-init-tools
See http://www.codemonkey.org.uk/post-halloween-2.5.txt
INSTALL fs/binfmt_aout.ko
INSTALL drivers/net/dummy.ko
INSTALL drivers/base/firmware_class.ko
if [ -r System.map ]; then /sbin/depmod -ae -F System.map 2.6.0-test6; fi

[root@orion linux-2.6.0-test6]# make install
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date.
CHK include/linux/compile.h
Kernel: arch/i386/boot/bzImage is ready
sh /usr/src/linux-2.6.0-test6/arch/i386/boot/install.sh 2.6.0-test6
arch/i386/boot/bzImage System.map ""
No module aic7xxx found for kernel 2.6.0-test6
mkinitrd failed
make[1]: *** [install] Error 1
make: *** [install] Error 2
[root@orion linux-2.6.0-test6]#

---

note that the compile and build of the kernel finish with NO errors.
note that there are NO modules in this build.

Then note that there is some some silly error about:

No module aic7xxx found for kernel 2.6.0-test6

during the 'make install' that causes the install to fail.

I have been seeing this error ever since -test1.
Has anyone tracked this thing down???


--
Reg.Clemens
[email protected]



2003-09-29 08:11:00

by Gawain Lynch

[permalink] [raw]
Subject: Re: Test6: still an error in 'make install'

On Mon, 2003-09-29 at 14:55, [email protected] wrote:
[snip]
> sh /usr/src/linux-2.6.0-test6/arch/i386/boot/install.sh 2.6.0-test6
> arch/i386/boot/bzImage System.map ""
> No module aic7xxx found for kernel 2.6.0-test6
> mkinitrd failed
[snip]

You most likely have a line like the following in you /etc/modules.conf

alias scsi_hostadapter aic7xxx

and mkinitrd is being called without the --builtin= option by one of the
downstream scripts from install.sh (see above)

Gawain