Click to See Complete Forum and Search --> : My error messages


Don19
03-17-2001, 12:52 AM
Alright i've been having problems compiling my tulip.c driver for my lne100tx nic running mandrake 7.0. I've tried to follow the nhf and read the tulip mailing list archive about a dozen times. When i ran the command using the recommended dir it gave me the same errors and i searched for the files and most of them where in "i586-glibc20-linux" so i just plugged that in. I'm thinking i don't have something installed or something thanks.
[root@powerhouse tmp]# gcc -DMODULE -D KERNEL -Wall -Wstrict-prototypes -O6 -c
tulip.c '[ -f /usr/i586-glibc20-linux/include/linux/modversions.h ] && echo -DMODVERSIONS'
gcc: [ -f /usr/i586-glibc20-linux/include/linux/modversions.h ] && echo -DMODVER
SIONS: No such file or directory
tulip.c:75: linux/config.h: No such file or directory
tulip.c:76: linux/version.h: No such file or directory
tulip.c:81: linux/module.h: No such file or directory
tulip.c:87: linux/kernel.h: No such file or directory
tulip.c:88: linux/sched.h: No such file or directory
tulip.c:89: linux/string.h: No such file or directory
tulip.c:90: linux/timer.h: No such file or directory
tulip.c:91: linux/errno.h: No such file or directory
tulip.c:92: linux/ioport.h: No such file or directory
tulip.c:93: linux/malloc.h: No such file or directory
tulip.c:94: linux/interrupt.h: No such file or directory
tulip.c:95: linux/pci.h: No such file or directory
tulip.c:96: linux/netdevice.h: No such file or directory
tulip.c:97: linux/etherdevice.h: No such file or directory
tulip.c:98: linux/skbuff.h: No such file or directory
tulip.c:99: asm/processor.h: No such file or directory
tulip.c:100: asm/bitops.h: No such file or directory
tulip.c:101: asm/io.h: No such file or directory
tulip.c:134: linux/bios32.h: No such file or directory

PLBlaze
03-17-2001, 02:11 AM
You need the header files from your kernel source...get the kernel or look for it on linux cdrom,unpack to /usr/src/linux, make config,make dep then compile tulip.c.Hope this helps.