Subject: kernel config file update (#84) Index: sys/config/config,GENERIC 2.11BSD Description: There is an extraneous line now (after #83) in the kernel config files. Repeat-By: By observation. Fix: Only the GENERIC, KAZOO and VAX config file differences are included. You should go into each config file present on the system (typically those files in /sys/config which are all uppercase) and make the corresponding change. Included in this update is the beginning of support for the DELQA-YM ethernet board. The driver is still in the debug stage, so patches to the Makefiles* are not included at this time. Be sure to add the "NQT" line though, it will be needed at a later date. The "config" shell script is updated to 1) not look for the TMSCP_VEC line and 2) accept the NQT line. To apply patches (they were all created with full pathnames) use the "-p0" option of the 'patch' program: patch -p0 < the_file_below ==============================cut here============================ *** /sys/conf/GENERIC.old Sun Dec 22 16:09:46 1991 --- /sys/conf/GENERIC Thu Nov 19 21:06:31 1992 *************** *** 325,331 **** NTMSCP 1 # TMSCP controllers NTMS 1 # TMSCP drives TMSCP_DEBUG NO # debugging code in TMSCP drive (EXPENSIVE) - TMSCP_VEC 0260 # base of TMSCP interrupt vectors (OCTAL!!!) ######################################### # PERIPHERALS: TERMINALS # --- 325,330 ---- *************** *** 377,382 **** --- 376,382 ---- NIL 0 # Interlan Ethernet NSL 0 # Serial Line IP NQE 0 # DEQNA + NQT 0 # DEQTA (DELQA-YM, DELQA-PLUS) NVV 0 # V2LNI (Pronet) NACC 0 # ACC LH/DH ARPAnet IMP interface PLI NO # LH/DH is connected to a PLI *** /sys/conf/KAZOO.old Sun Dec 22 16:11:27 1991 --- /sys/conf/KAZOO Thu Nov 19 21:06:53 1992 *************** *** 326,332 **** NTMSCP 0 # TMSCP controllers NTMS 0 # TMSCP drives TMSCP_DEBUG YES # debugging code in TMSCP drive (EXPENSIVE) - TMSCP_VEC 0260 # base of TMSCP interrupt vectors (OCTAL!!!) ######################################### # PERIPHERALS: TERMINALS # --- 326,331 ---- *************** *** 378,383 **** --- 377,383 ---- NIL 0 # Interlan Ethernet NSL 1 # Serial Line IP NQE 1 # DEQNA + NQT 0 # DEQTA (DELQA-YM, DELQA-PLUS) NACC 0 # ACC LH/DH ARPAnet IMP interface PLI NO # LH/DH is connected to a PLI NIMP 0 # ARPAnet IMP 1822 interface *** /sys/conf/VAX.old Sun Dec 22 16:12:46 1991 --- /sys/conf/VAX Tue Oct 13 20:46:49 1992 *************** *** 371,376 **** --- 371,377 ---- NIL 0 # Interlan Ethernet NSL 1 # Serial Line IP NQE 1 # DEQNA + NQT 0 # DEQTA (DELQA-YM, DELQA-PLUS) # The following devices are untested in 2.10BSD; some are untested since # before 2.9BSD. Some won't even compile. Most will require modification *** /sys/conf/config.old Sun Dec 22 16:14:29 1991 --- /sys/conf/config Thu Nov 19 21:04:42 1992 *************** *** 250,255 **** --- 250,256 ---- echo "#define LP_MAXCOL $LP_MAXCOL" >> ../$MACHINE/lp.h echo "#define NPTY $NPTY" > ../$MACHINE/pty.h echo "#define NQE $NQE" > ../$MACHINE/qe.h + echo "#define NQT $NQT" > ../$MACHINE/qt.h echo "#define NRAM $NRAM" > ../$MACHINE/ram.h echo "#define NRK $NRK" > ../$MACHINE/rk.h echo "#define NRX $NRX" > ../$MACHINE/rx.h *************** *** 259,265 **** echo "#define NTS $NTS" > ../$MACHINE/ts.h echo "#define NTMSCP $NTMSCP" > ../$MACHINE/tms.h echo "#define NTMS $NTMS" >> ../$MACHINE/tms.h - echo "#define TMSCP_VEC $TMSCP_VEC" >> ../$MACHINE/tms.h if [ $TMSCP_DEBUG = YES ]; then echo "#define TMSCP_DEBUG" >> ../$MACHINE/tms.h fi --- 260,265 ----