No. The official config file for redhat kernels is found as /boot/config-2.4.20-9 (or whatsoever), You have to copy it as .config in the source tree /usr/src/linux/ which is a symbolic link to /usr/src/linux-2.4.20-9 (at least if you used redhat kernel source). Then you can run "make oldconfig" (in this directory of course), but it's useless as "make xconfig" (in graphic mode) will use this .config file anyway, and is much more pleasant.-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Thursday 01 May 2003 04:54 pm, Bret Comstock Waldow wrote: > Hi, > > I installed Red Hat 9, including source code. I allowed an upgrade to > 2.4.20-9. > > I run "make oldconfig" to recreate the configuration that is running > now. > > make dep clean bzImage <= works ok > make modules <= fails
mv .config config.save make mrproper mv config.save .config make oldconfig make dep && make bzImage && make modules
Greetings.