Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!brutus.cs.uiuc.edu!apple!voder!wlbr!wlv!sms From: sms@wlv.imsd.contel.com (Steven M. Schultz) Newsgroups: comp.bugs.2bsd Subject: trivial change for sys/conf/config Keywords: idlepattern lights Message-ID: <35361@wlbr.IMSD.CONTEL.COM> Date: 23 Aug 89 04:32:23 GMT Sender: news@wlbr.IMSD.CONTEL.COM Reply-To: sms@wlv.imsd.contel.com (Steven M. Schultz) Organization: Contel Federal Systems Lines: 30 Subject: trivial change to 'config' Index: sys/config 2.10BSD Description: The idle pattern display in the light register has code ifdef'd on IDLE_DISPLAY in mch_xxx.s, unfortunately 'config' provides no way to enable this option. Thought i'd done this already, but i guess not. Repeat-By: Build a kernel for an 11/70, observe the lack of an 'idle' pattern. Fix: Apply this patch to /sys/sys/conf/config. An alternate method would have been to simply remove the ifdef in mch_xxx.s, wouldn't hurt anything and only takes a couple words of text space. *** config.old Sat Aug 12 21:20:16 1989 --- config Tue Aug 22 14:25:29 1989 *************** *** 219,224 **** --- 219,227 ---- if [ $PROFILE = YES ]; then echo "#define PROFILE 1" >> $LO fi + if [ "$PDP11" = 70 ]; then + echo "#define IDLE_DISPLAY 1" >> $LO + fi echo "#endif /* KERNEL */" >> $LO echo "Creating device header files."