LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   make install errors during kernel compile (https://www.linuxquestions.org/questions/slackware-14/make-install-errors-during-kernel-compile-146667/)

tharris 02-16-2004 05:50 AM

make install errors during kernel compile
 
I have gone through the steps that DaOne listed. I am down to the "Make Install" and this is the output i got.
Code:

root@tharris:/usr/src/linux-2.6.2# 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.2/arch/i386/boot/install.sh 2.6.2 arch/i386/boot/bzImage System.map ""
Fatal: open /boot/vmlinuz.old: No such file or directory
make[1]: *** [install] Error 1
make: *** [install] Error 2

do i just contiunes to make the modules or do i need to fix something?

Thanks
Tharris Da Newbie

guygriffiths 02-16-2004 10:11 AM

Doesn't look like a big problem. I have never used "make install" when building a kernel though, it's easier to do it by hand and you know whats going on.

The steps I would do (after configuring) are:
export VERSION=2.6.2
export DATE=20040216 (there's a command for this but I can't remember it off the top of my head)
make EXTRAVERSION=$DATE bzImage
make EXTRAVERSION=$DATE modules
make EXTRAVERSION=$DATE modules_install
cp arch/i386/boot/bzImage /boot/linux-${VERSION}-${DATE}
cp System.map /boot/System.map-${VERSION}-${DATE}

You can't go wrong with that.


All times are GMT -5. The time now is 10:38 AM.