Hello all, I'm using the Debian gcc compiler with all the matched libraries, etc. I'm compiling a 2.1.27 kernel to inlude a LocalTalk driver. I select CONFIG_LTALK=y to do this in the config file. Everything compiles nicely until near the very end of the compile I get the following messages and the compile dies. Without CONFIG_LTALK=y the kernel compiles to completion. My problem is that I don't understand the error message and do not know what to do to correct this type of problem. Please help in my education regarding this matter.
Thanks, Victor ************* End part of compiler messages ******************************* make[1]: Leaving directory `/usr/src/linux/arch/i386/mm' make[1]: Entering directory `/usr/src/linux/arch/i386/lib' make all_targets make[2]: Entering directory `/usr/src/linux/arch/i386/lib' gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -D__SMP__ -pipe -fno-strength-reduce -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2 -DCPU=586 -D__SMP__ -c -o checksum.o checksum.c gcc -D__KERNEL__ -I/usr/src/linux/include -D__ASSEMBLY__ -D__SMP__ -traditional -c semaphore.S -o semaphore.o gcc -D__KERNEL__ -I/usr/src/linux/include -D__ASSEMBLY__ -D__SMP__ -traditional -c locks.S -o locks.o rm -f lib.a ar rcs lib.a checksum.o semaphore.o locks.o make[2]: Leaving directory `/usr/src/linux/arch/i386/lib' make[1]: Leaving directory `/usr/src/linux/arch/i386/lib' ld -m elf_i386 -Ttext 0xC0100000 -e stext arch/i386/kernel/head.o init/main.o init/version.o \ arch/i386/kernel/kernel.o arch/i386/mm/mm.o kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o net/network.a \ fs/filesystems.a \ drivers/block/block.a drivers/char/char.a drivers/net/net.a drivers/scsi/scsi.a drivers/cdrom/cdrom.a drivers/sound/sound.a drivers/pci/pci.a \ /usr/src/linux/arch/i386/lib/lib.a /usr/src/linux/lib/lib.a /usr/src/linux/arch/i386/lib/lib.a \ -o vmlinux drivers/net/net.a(ltpc.o): In function `ltpc_init': ltpc.o(.text+0x1308): undefined reference to `ltalk_setup' make: *** [vmlinux] Error 1 linux # ***************** The compile stops here and wont continue *********