From owner-freebsd-questions Thu Oct 23 15:50:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA03876 for questions-outgoing; Thu, 23 Oct 1997 15:50:11 -0700 (PDT) (envelope-from owner-freebsd-questions) Received: from ha1.ntr.net (ha1.ntr.net [206.112.0.10]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA03826 for ; Thu, 23 Oct 1997 15:49:21 -0700 (PDT) (envelope-from keithr@ntr.net) Received: from vip.ntr.net (ACCS-AS22-DP16.SNFC.grid.net [206.80.181.145]) by ha1.ntr.net (NTR*NET 2.1.0) with SMTP id SAA10697 for ; Thu, 23 Oct 1997 18:48:59 -0400 (EDT) Date: Thu, 23 Oct 1997 15:47:34 +0000 (GMT) From: Keith Ridge To: freebsd-questions@freebsd.org Subject: kernel compile: Undefined symbol `_isa_devtab_cam' Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello Everyone, I have been running 3.0Snap (22/5/97) with the GENERIC kernel.(successfully) I cvsup'd today and tried to to build a simple custom kernel. I'll just post the diff's from GENERIC: % diff MMJH GENERIC 17,18c17,18 < #cpu "I386_CPU" < #cpu "I486_CPU" --- > cpu "I386_CPU" > cpu "I486_CPU" 20,21c20,21 < #cpu "I686_CPU" < ident MMJH --- > cpu "I686_CPU" > ident GENERIC 38,40d37 < options SYSVSHM < options SYSVSEM < options SYSVMSG % (I have 166 MHz Pentium MMX, NO SCSI devices... ) When trying to 'make' (following "The complete FreeBSD") the kernel I get: L -include opt_global.h -c config.c cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I. ./.. -I../../../include -DFAILSAFE -DCOMPAT_43 -DMSDOSFS -DNFS -DFFS -DINET -DKE RNEL -include opt_global.h swapkernel.c sh ../../conf/newvers.sh MMJH -DFAILSAFE -DCOMPAT_43 -DMSDOSFS -DNFS -DFFS -DINE T cc -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Ws trict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../. . -I../../../include -DFAILSAFE -DCOMPAT_43 -DMSDOSFS -DNFS -DFFS -DINET -DKERNE L -include opt_global.h -c vers.c loading kernel isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment isa.o: Undefined symbol `_isa_devtab_cam' referenced from text segment *** Error code 1 Stop. % Please give me some advice... Thanks, Keith.