PICOBSD revision 70314
157086Sluigi#
257086Sluigi# $FreeBSD: head/release/picobsd/bridge/PICOBSD 70314 2000-12-23 19:27:42Z joe $
357086Sluigi#
457086Sluigi# Line starting with #PicoBSD contains PicoBSD build parameters
557086Sluigi#marker         def_sz  init    MFS_inodes      floppy_inodes
657086Sluigi#PicoBSD	2400	init	4096		32768
757086Sluigi
857086Sluigimachine		i386
957086Sluigicpu		I386_CPU
1057086Sluigicpu		I486_CPU
1157086Sluigicpu		I586_CPU
1257086Sluigicpu		I686_CPU
1357086Sluigiident		PICOBSD
1457086Sluigimaxusers	20
1557086Sluigi
1667175Sjoeoptions 	INET			#InterNETworking
1767175Sjoeoptions 	FFS			#Berkeley Fast Filesystem
1867175Sjoeoptions 	FFS_ROOT		#FFS usable as root device [keep this!]
1970314Sjoe#options	BOOTP			#Use BOOTP to obtain IP address/hostname
2067175Sjoeoptions 	MFS			#Memory Filesystem
2167175Sjoeoptions 	MD_ROOT			#MD is a potential root device
2267175Sjoeoptions 	COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
2367175Sjoe
2470314Sjoe#options 	MSDOSFS			#MSDOS Filesystem
2570314Sjoe#options 	CD9660			#ISO 9660 Filesystem
2670314Sjoe#options 	PROCFS			#Process filesystem
2770314Sjoe#options 	USERCONFIG		#boot -c editor
2870314Sjoe#options	INTRO_USERCONFIG	#imply -c and parse info area
2970314Sjoe#options	VISUAL_USERCONFIG	#visual boot -c editor
3070314Sjoe
3157086Sluigioptions		IPFIREWALL
3257086Sluigioptions		IPFIREWALL_DEFAULT_TO_ACCEPT
3370314Sjoe#options	IPDIVERT		# divert (for natd)
3470314Sjoe#options 	DEVFS			#Device Filesystem
3567175Sjoeoptions		PCI_QUIET		#quiets PCI code on chipset settings
3667175Sjoe
3757086Sluigi# Support for bridging and bandwidth limiting
3867175Sjoeoptions		DUMMYNET
3967175Sjoeoptions		BRIDGE
4067175Sjoeoptions		HZ=1000
4167175Sjoeoptions		NMBCLUSTERS=4096
4257086Sluigi
4367175Sjoedevice		isa
4467175Sjoedevice		pci
4567175Sjoeoptions 	COMPAT_OLDISA		# compatability shims for lnc, le
4657086Sluigi
4767175Sjoe# Floppy drives
4867175Sjoedevice		fdc
4957086Sluigi
5067175Sjoe# ATA and ATAPI devices
5170314Sjoe#device		ata
5270314Sjoe#device		atadisk			# ATA disk drives
5367175Sjoe#device		atapicd			# ATAPI CDROM drives
5457086Sluigi
5557086Sluigi# atkbdc0 controls both the keyboard and the PS/2 mouse
5667175Sjoedevice		atkbdc	1
5767175Sjoedevice		atkbd
5870314Sjoe#device		psm
5957086Sluigi
6067175Sjoedevice		vga
6157086Sluigi
6257086Sluigi# syscons is the default console driver, resembling an SCO console
6367175Sjoedevice		sc	1
6457086Sluigi
6567175Sjoe# Floating point support - do not disable.
6667175Sjoedevice		npx
6757086Sluigi
6867175Sjoe# Serial (COM) ports
6967175Sjoedevice		sio
7057086Sluigi
7167175Sjoe# Parallel port
7267175Sjoe#device		ppc
7367175Sjoe#device		ppbus		# Parallel port bus (required)
7467175Sjoe#device		lpt		# Printer
7567175Sjoe#device		plip		# TCP/IP over parallel
7667175Sjoe#device		ppi		# Parallel port interface device
7757086Sluigi
7857086Sluigi#
7957086Sluigi# The following Ethernet NICs are all PCI devices.
8057086Sluigi#
8157086Sluigidevice	miibus 
8267175Sjoe#device		de		# DEC/Intel DC21x4x (``Tulip'')
8367175Sjoedevice		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
8470314Sjoedevice		xl0		# 3Com
8570314Sjoe#device		rl		# RealTek 8129/8139
8670314Sjoe#device		dc		# DEC/Intel 21143 and various workalikes
8767175Sjoedevice		ed
8857086Sluigi
8967175Sjoedevice		loop		# Network loopback
9067175Sjoedevice		ether		# Ethernet support
9167175Sjoedevice		tun		# Packet tunnel.
9270314Sjoe#device		vn		#Vnode driver (turns a file into a device)
9367175Sjoedevice		pty		# Pseudo-ttys (telnet etc)
9467175Sjoedevice		md		# Memory "disks"
9557086Sluigi
9667175Sjoe# The `bpf' device enables the Berkeley Packet Filter.
9767175Sjoe# Be aware of the administrative consequences of enabling this!
9870314Sjoe#device		bpf		# Berkeley packet filter
99