This script won't really help, because make xconfig never finishes. 
Here it is:

[root@childm linux]# make xconfig
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts kconfig.tk
make[1]: Entering directory `/usr/src/linux-2.2.15/scripts'
cat header.tk >> ./kconfig.tk
./tkparse < ../arch/i386/config.in >> kconfig.tk
drivers/char/Config.in: 124: can't handle dep_tristate condition
make[1]: *** [kconfig.tk] Error 1
make[1]: Leaving directory `/usr/src/linux-2.2.15/scripts'
make: *** [xconfig] Error 2

The error seems to be on the 8th line of my snippet, how do I get past
"drivers/char/Config.in: 124: can't handle dep_tristate condition"??

Also, checking dmesg doesn't help- the "can't find module foo" isn't
listed.  Any other suggestions?

-Marc Childress



Robert L Martin wrote:
> 
> okay first thing i use a script to do kernels.
> ie create a file named hackernel with
> 
> cd /usr/scr/linux
> make xconfig && make dep && make clean && make bzImage
> >/usr/src/hack.log 2>/usr/scr/hackerr.log && make modules &&
> make modules_install
> EOF
> just make it executable BY ROOT ONLY and run as root
> 
> the >/usr/src/hack.log 2>/usr/scr/hackerr.log part pipes the
> output (stndout and stnderr) to files for later checking. do
> you have all the deps for the sources fixed?  (i remember
> 6.5 had a problem)
> as far as printing the startup messages typing "dmesg
> >dmesg.txt " should get you a printable file
> ({nonmime data stream} everything but that part gets
> printed)

Reply via email to