bostic@OKEEFFE.BERKELEY.EDU (Keith Bostic) (10/16/87)
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