xref: /freebsd/sys/conf/NOTES (revision 699e9cf1378dad507f0ad7c7dfd947e3e1050ea4)
12365e64fSRodney W. Grimes#
22365e64fSRodney W. Grimes# LINT -- config file for checking all the sources, tries to pull in
32365e64fSRodney W. Grimes#         as much of the source tree as it can.
42365e64fSRodney W. Grimes#
52365e64fSRodney W. Grimes#	This kernel is NOT MEANT to be runnable!
62365e64fSRodney W. Grimes#
7699e9cf1SGarrett Wollman#	$Id: LINT,v 1.30 1993/11/18 05:01:45 rgrimes Exp $
82365e64fSRodney W. Grimes#
92365e64fSRodney W. Grimes
102365e64fSRodney W. Grimesmachine		"i386"
11f87a3269SRodney W. Grimescpu		"I386_CPU"
12f87a3269SRodney W. Grimescpu		"I486_CPU"
132365e64fSRodney W. Grimesident		LINT
142365e64fSRodney W. Grimestimezone	8 dst
152365e64fSRodney W. Grimesmaxusers	10
1622665badSRodney W. Grimesmaxfdescs	2048			#Max file descriptors per process
1734f949aeSRodney W. Grimesoptions		MATH_EMULATE		#Support for x87 emulation
182365e64fSRodney W. Grimes
19a0ea6f1cSRodney W. Grimesconfig		"386bsd"	at 0xFE100000 root on wd0 swap on wd0 and sd0
202365e64fSRodney W. Grimes
212365e64fSRodney W. Grimes#
222365e64fSRodney W. Grimes# options that appear as inline #ifdef's
232365e64fSRodney W. Grimes#
242365e64fSRodney W. Grimesoptions		"COM_BIDIR"		#Bidirectional support in sys/isa/sio.c
252365e64fSRodney W. Grimesoptions		"COM_MULTIPORT"		#Multiport support in sys/isa/sio.c
262365e64fSRodney W. Grimesoptions		"COMPAT_43"		#compatible with BSD 4.3
27e13cc161SGarrett Wollmanoptions		"SYMTAB_SPACE=103365"	#This kernel needs LOTS of symtable
282365e64fSRodney W. Grimesoptions		GATEWAY			#internetwork gateway
292365e64fSRodney W. Grimesoptions		KTRACE			#kernel tracing
302365e64fSRodney W. Grimesoptions		"NCONS=8"		#number of syscons virtual consoles
316d873e8aSAndreas Schulzoptions		"FAT_CURSOR"		#block cursor in syscons or pccons
3269637c74SJordan K. Hubbardoptions		"STAR_SAVER"		#syscons "stars" screen saver
3369637c74SJordan K. Hubbardoptions		"SNAKE_SAVER"		#syscons "snake" screen saver
342365e64fSRodney W. Grimesoptions		"TCP_COMPAT_42"		#tcp/ip compatible with 4.2
35aa2e423cSGarrett Wollman					# ^^^ NOT RECOMMENDED FOR NORMAL USE
362365e64fSRodney W. Grimesoptions		UCONSOLE		#x console support
372365e64fSRodney W. Grimesoptions		XSERVER			#xserver
38aa2e423cSGarrett Wollmanoptions		DECBIT			#here because clnp.h wanted it here
39aa2e423cSGarrett Wollman					#support for CLNP ``congestion
40aa2e423cSGarrett Wollman					#experienced'' bit in ISO-TP
41aa2e423cSGarrett Wollmanoptions		TROLL			#CLNP network error simulator
42aa2e423cSGarrett Wollmanoptions		ICMPPRINTFS		#ICMP packet dump by printf()
43aa2e423cSGarrett Wollmanoptions		NSERRPRINTFS		#ditto for XNS Error protocol
44cafa6f48SGarrett Wollman					#^^above three NOT RECOMMENTED
45aa2e423cSGarrett Wollmanoptions		SCSIDUMP		#support for crash dumps on sd disks
46aa2e423cSGarrett Wollmanoptions		FASTLINKS		#support for fast symbolic links
4787e90eb9SGarrett Wollmanoptions		MACHVMCOMPAT		#support for Mach-style vm calls
48e13cc161SGarrett Wollmanoptions		IPBROADCASTECHO=1	#send reply to broadcast pings
49e13cc161SGarrett Wollmanoptions		IPMASKAGENT=1		#send reply to icmp mask requests
502365e64fSRodney W. Grimes
512365e64fSRodney W. Grimes#
522365e64fSRodney W. Grimes# options that are in sys/conf/files
532365e64fSRodney W. Grimes#
54e13ca98cSRodney W. Grimespseudo-device	bpfilter	4	#berkeley packet filter
552365e64fSRodney W. Grimesoptions		CCITT
5671b9f75aSRodney W. Grimesdevice		cd0	#Only need one of these, the code dynamically grows
572365e64fSRodney W. Grimesdevice		ch0
582365e64fSRodney W. Grimespseudo-device	ddb
592365e64fSRodney W. Grimespseudo-device	devpager
602365e64fSRodney W. Grimesoptions		EON
612365e64fSRodney W. Grimespseudo-device	ether
622365e64fSRodney W. Grimesoptions		FIFO
632365e64fSRodney W. Grimes#pseudo-device	imp
642365e64fSRodney W. Grimesoptions		INET			#Internet communications protocols
652365e64fSRodney W. Grimesoptions		ISO
662365e64fSRodney W. Grimesoptions		ISOFS			#ISO 9660 File System
672365e64fSRodney W. Grimespseudo-device	loop
68699e9cf1SGarrett Wollmanoptions		MFS			#Memory File System
692365e64fSRodney W. Grimesoptions		NFS			#Network File System
70fa96c3beSRodney W. Grimesoptions		NS			#Xerox NS communications protocols
71699e9cf1SGarrett Wollmanoptions		NSIP			#XNS over IP
722365e64fSRodney W. Grimesoptions		PCFS			#PC (MSDOS) File System
7317825e17SRodney W. Grimespseudo-device	ppp	2
742365e64fSRodney W. Grimespseudo-device	pty	4
752365e64fSRodney W. Grimesoptions		QUOTA			#enable disk quotas
769cad5725SGarrett Wollmanoptions		RMP			#HP remote maint protocol
772365e64fSRodney W. Grimescontroller	scbus0
782365e64fSRodney W. Grimesdevice		sd0
792365e64fSRodney W. Grimesdevice		sd1
802365e64fSRodney W. Grimesdevice		sd2
812365e64fSRodney W. Grimesdevice		sd3
822365e64fSRodney W. Grimespseudo-device	sl	2
832365e64fSRodney W. Grimesdevice		st0
842365e64fSRodney W. Grimesdevice		st1
852365e64fSRodney W. Grimespseudo-device	swappager
862eca4bfaSRodney W. Grimesoptions		SYSVSHM
872eca4bfaSRodney W. Grimesoptions		"SHMMAXPGS=64"		# 256Kb of sharable memory
882365e64fSRodney W. Grimes#pseudo-device	tb			#tablet line discipline.
89699e9cf1SGarrett Wollmanoptions		TPIP			# ISO TP class 4 over IP
902365e64fSRodney W. Grimes#pseudo-device	tun
9157bb0ee4SRodney W. Grimesdevice		uk0			#unknown scsi devices
922365e64fSRodney W. Grimespseudo-device	vnodepager
932365e64fSRodney W. Grimes
942365e64fSRodney W. Grimes#
952365e64fSRodney W. Grimes# options that are in sys/i386/conf/files.i386
962365e64fSRodney W. Grimes#
972365e64fSRodney W. Grimes#This is needed here so the isa? below will work
982365e64fSRodney W. Grimescontroller	isa0
992365e64fSRodney W. Grimes
1002365e64fSRodney W. Grimescontroller	aha0	at isa? port "IO_AHA0" bio irq 11 drq 5 vector ahaintr
1012365e64fSRodney W. Grimescontroller	ahb0	at isa? bio irq 11 vector ahbintr
1022365e64fSRodney W. Grimescontroller	bt0	at isa? port "IO_BT0" bio irq 12  vector btintr
1032365e64fSRodney W. Grimesdevice		com0	at isa? port "IO_COM1" tty irq 4 vector comintr
1042365e64fSRodney W. Grimesdevice		com1	at isa? port "IO_COM2" tty irq 3 vector comintr
1052365e64fSRodney W. Grimesdevice		com2	at isa? port "IO_COM3" tty irq 5 vector comintr
1062365e64fSRodney W. Grimesdevice		com3	at isa? port "IO_COM4" tty irq 9 vector comintr
1072365e64fSRodney W. Grimes#dcfclk	device-driver
1082365e64fSRodney W. Grimescontroller	fd0	at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
1092365e64fSRodney W. Grimesdisk		fd0	at fd0 drive 0
1102365e64fSRodney W. Grimesdisk		fd1	at fd0 drive 1
111e501a581SRodney W. Grimesdevice ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
112ec43e20aSRodney W. Grimesdevice ie0 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr
1132365e64fSRodney W. Grimesdevice is0 at isa? port 0x280 net irq 10 drq 7 vector isintr
1142365e64fSRodney W. Grimes#device ix0 at isa? port 0x320 net irq 10 iomem 0xd0000 iosiz 32768 vector ixintr
1152365e64fSRodney W. Grimes#special cased above:
1162365e64fSRodney W. Grimes#controller	isa0
1172365e64fSRodney W. Grimesdevice		lpa0	at isa? port "IO_LPT1" tty
1182365e64fSRodney W. Grimesdevice		lpa1	at isa? port "IO_LPT2" tty
1192365e64fSRodney W. Grimesdevice		lpt0	at isa? port "IO_LPT3" tty irq 7 vector lptintr
1205e89f9d8SRodney W. Grimesdevice		mcd0	at isa? port 0x300 bio irq 10 vector mcdintr
121e2aa2f4eSNate Williamsdevice		mse0	at isa? port 0x23c tty irq 5 vector mseintr
1222365e64fSRodney W. Grimesdevice		npx0	at isa? port "IO_NPX" irq 13 vector npxintr
1232365e64fSRodney W. Grimesdevice		pc0	at isa? port "IO_KBD" tty irq 1 vector pcrint
1242365e64fSRodney W. Grimes#only one of pc0 or sc0 allowed
1252365e64fSRodney W. Grimes#device		sc0	at isa? port "IO_KBD" tty irq 1 vector scintr
1262365e64fSRodney W. Grimesdevice		sio0	at isa? port "IO_COM1" tty irq 4 vector siointr
1272365e64fSRodney W. Grimesdevice		sio1	at isa? port "IO_COM2" tty irq 3 vector siointr
1282365e64fSRodney W. Grimesdevice		sio2	at isa? port "IO_COM3" tty irq 5 vector siointr
1292365e64fSRodney W. Grimesdevice		sio3	at isa? port "IO_COM4" tty irq 9 vector siointr
1302365e64fSRodney W. Grimespseudo-device	speaker
1312365e64fSRodney W. Grimes#tw	device-driver
1323bb1d96cSRodney W. Grimescontroller	uha0	at isa? port "IO_UHA0" bio irq 14 drq 5 vector uhaintr
1332365e64fSRodney W. Grimescontroller	wd0	at isa? port "IO_WD1" bio irq 14 vector wdintr
1342365e64fSRodney W. Grimesdisk		wd0	at wd0 drive 0
1352365e64fSRodney W. Grimesdisk		wd1	at wd0 drive 1
1362365e64fSRodney W. Grimesdevice		wt0	at isa? port 0x300 bio irq 5 drq 1 vector wtintr
1372365e64fSRodney W. Grimes
13835686319SJordan K. Hubbard# Various sound card drivers.
139dd442d34SJordan K. Hubbard# See /sys/i386/doc/sound.doc for more information.
14035686319SJordan K. Hubbarddevice snd5 at isa? port 0x330 irq 6 drq 0 vector mpuintr
14135686319SJordan K. Hubbarddevice snd4 at isa? port 0x220 irq 15 drq 6 vector gusintr
14235686319SJordan K. Hubbarddevice snd3 at isa? port 0x388 irq 12 drq 3 vector pasintr
143dd442d34SJordan K. Hubbarddevice snd2 at isa? port 0x220 irq 7 drq 1 vector sbintr
144dd442d34SJordan K. Hubbarddevice snd1 at isa? port 0x388 irq 0 drq 0 vector sbintr
145ce551cceSJordan K. Hubbard#
1462365e64fSRodney W. Grimes#
1472365e64fSRodney W. Grimes# options that have not been resolved yet
1482365e64fSRodney W. Grimes#
1492365e64fSRodney W. Grimespseudo-device	log
150