From owner-freebsd-questions Sun Jul 27 05:52:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA02735 for questions-outgoing; Sun, 27 Jul 1997 05:52:20 -0700 (PDT) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id FAA02730 for ; Sun, 27 Jul 1997 05:52:13 -0700 (PDT) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sun, 27 Jul 1997 8:51:39 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA21571; Sun, 27 Jul 97 08:51:37 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id IAA03344; Sun, 27 Jul 1997 08:49:15 -0400 Message-Id: <19970727084915.54500@ct.picker.com> Date: Sun, 27 Jul 1997 08:49:15 -0400 From: Randall Hopper To: Stefan Veith Cc: questions@freebsd.org Subject: Re: sound support References: <199707241514.RAA09063@rpops002.rp-online.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <199707241514.RAA09063@rpops002.rp-online.de>; from Stefan Veith on Thu, Jul 24, 1997 at 05:15:41PM -0500 Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Stefan Veith: |I added all the lines needed for a Soundblaster 16 in the kernel config file |. At the end of the "make" command (' ... loading kernel') I get this error |message: | |dev_table.o: Undefined symbol '_attach_sb16midi' referenced from data |segment |dev_table.o: Undefined symbol '_probe_sb16midi' referenced from data segment |sb_dsp.o: Undefined symbol '_sb16minidiintr' referenced from data segment |ioconf.o: Undefined symbol 'sbmididriver' referenced from data segment | |What is wrong? I even made (sh MAKEDEV snd0) the needed device in the /dev |directory. Doug White: |You forgot to add 'controller snd0' to your kernel config. Add it and try |again. Or, judging from the unresolved references, you're missing the "sbmidi0" device. Here's the full list you should have: controller snd0 device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device opl0 at isa? port 0x388 Randall Hopper