Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!mit-eddie!ll-xn!ames!ucbcad!ucbvax!OKEEFFE.BERKELEY.EDU!bostic From: bostic@OKEEFFE.BERKELEY.EDU (Keith Bostic) Newsgroups: comp.bugs.2bsd Subject: V1.7 (de.h isn't included in ioconf.c) Message-ID: <8710161824.AA20592@okeeffe.Berkeley.EDU> Date: Fri, 16-Oct-87 14:24:25 EDT Article-I.D.: okeeffe.8710161824.AA20592 Posted: Fri Oct 16 14:24:25 1987 Date-Received: Sat, 17-Oct-87 23:13:44 EDT Sender: daemon@ucbvax.BERKELEY.EDU Lines: 36 Subject: de.h isn't included in ioconf.c Index: sys/conf/ioconf.c 2.10BSD Description: "de.h" isn't included in ioconf.c, therefore the DE driver never gets attached when the kernel starts up. Repeat-By: Try to configure in a DEUNA. Fix: Apply the following patches to sys/conf/ioconf.c and sys/sys/init_main.c. *** ioconf.c.old Thu Oct 15 16:20:52 1987 --- ioconf.c Thu Oct 15 16:20:55 1987 *************** *** 25,30 **** --- 25,31 ---- #include "sri.h" #include "vv.h" #include "buf.h" + #include "de.h" #include "qe.h" #include "pdpuba/ubavar.h" *** init_main.c.old Thu Oct 15 16:21:09 1987 --- init_main.c Thu Oct 15 16:22:32 1987 *************** *** 238,243 **** --- 238,244 ---- */ ui->ui_alive = 1; (*udp->ud_attach)(ui); + printf("attaching %s.\n", udp->ud_dname); } #include "sl.h" #if NSL > 0