>
> Hello,
>
>
> I'm running RH 6.0 with kernel 2.2.5-15 and I'm trying to upgrade
> to 2.2.10 . I'm untarred the new kernel to /usr/src/linux (the default?)
> and ran the xconfig from there. I get past the make dep, make clean but
> trying to do the final make zImage I get this error.
Well if you did it like you said word for word, then firstly you have
destroyed your 2.2.5-15 source tree as you have copied a new file over the
top of the old, which undoubtably will cause problems as old files will be
left here and there.
The proper way is as follows;
cd /usr/src
rm linux # remove the old symlink.
mkdir linux-2.2.10 # create a new directory for 2.2.10
ln -s linux-2.2.10 linux # link the new directory to linux
tar xzf linux-2.2.10.tar.gz
cd linux
make mrproper
make config
check that we have the following in /usr/include
cd /usr/include
ls -al linux asm
asm -> ../src/linux/include/asm
linux -> ../src/linux/include/linux
if not do;
ln -s /usr/src/linux/include/asm-i386 asm
ln -s /usr/src/linux/include/linux linux
cd /usr/src/linux
make dep zImage
You should then get a clean compile.
>
> /usr/include/bits/errno.h :25: linux/errno.h
> no such file or directory
> make:***[scripts/split-include] Error 1
>
> I checked for the errno.h file and sure enough its in the directory in
> question. Anyone seen this before ? TIA
>
>
>
> Darryl
>
>
>
--
Regards Richard.
[EMAIL PROTECTED]