1#
2# $FreeBSD$
3#
4# Line starting with #PicoBSD contains PicoBSD build parameters
5#marker         def_sz  init    MFS_inodes      floppy_inodes
6#PicoBSD	8000	init	8192		32768
7options MD_ROOT_SIZE=8000      # same as def_sz
8
9hints	"PICOBSD.hints"
10
11# values accessible through getenv()
12# env		"PICOBSD.env"
13
14#cpu		I486_CPU
15cpu		I586_CPU
16cpu		I686_CPU
17ident		PICOBSD
18
19options		SMP
20device	apic
21
22options		SCHED_4BSD		# mandatory to have one scheduler
23#options	MATH_EMULATE		#Support for x87 emulation
24options 	INET			#InterNETworking
25#options	INET6
26options 	FFS			#Berkeley Fast Filesystem
27#options	BOOTP			#Use BOOTP to obtain IP address/hostname
28options 	MD_ROOT			#MD is a potential root device
29
30#options	NFS			#Network Filesystem
31#options	NFS_ROOT		#NFS usable as root device, NFS required
32
33#options 	MSDOSFS			#MSDOS Filesystem
34#options 	CD9660			#ISO 9660 Filesystem
35#options 	CD9660_ROOT		#CD-ROM usable as root, CD9660 required
36#options	DEVFS			#Device Filesystem
37#options 	PROCFS			#Process filesystem
38options		COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
39
40#options		DDB
41
42options		IPFIREWALL
43options		IPFIREWALL_DEFAULT_TO_ACCEPT
44options		IPDIVERT		# divert (for natd)
45
46# Support for bridging and bandwidth limiting
47options		DUMMYNET
48device		if_bridge
49# Running with less than 1000 seems to give poor timing on
50# qemu, so we set HZ explicitly.
51options		HZ=1000
52
53device		random			# used by ssh
54device		pci
55
56# Floppy drives
57device		fdc
58
59# ATA and ATAPI devices
60#device		ata
61#device		atadisk			# ATA disk drives
62#device		atapicd			# ATAPI CDROM drives
63#options		ATA_STATIC_ID		#Static device numbering
64
65# atkbdc0 controls both the keyboard and the PS/2 mouse
66device		atkbdc			# At keyboard controller
67device		atkbd
68#device		psm			# do we need the mouse ??
69
70device		vga			# VGA screen
71
72# syscons is the default console driver, resembling an SCO console
73device		sc
74
75# Serial (COM) ports
76device		uart
77
78# Audio support
79#device		pcm
80
81# PCCARD (PCMCIA) support
82#device		card		# pccard bus
83#device		pcic		# PCMCIA bridge
84
85# Parallel port
86#device		ppc
87#device		ppbus		# Parallel port bus (required)
88#device		lpt		# Printer
89#device		plip		# TCP/IP over parallel
90#device		ppi		# Parallel port interface device
91
92#
93# The following Ethernet NICs are all PCI devices.
94#
95device	miibus 
96device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
97device		nfe		# nVidia nForce MCP on-board Ethernet
98#device		xl		# 3Com
99device		rl		# RealTek 8129/8139
100device		re		# RealTek 8139C+/8169/8169S/8110S
101device		sis		# National/SiS
102device		dc		# DEC/Intel 21143 and various workalikes
103device		ed
104
105device		loop		# Network loopback
106device		ether		# Ethernet support
107device		tun		# Packet tunnel.
108#device		vn		#Vnode driver (turns a file into a device)
109device		pty		# Pseudo-ttys (telnet etc)
110device		md		# Memory "disks"
111#device		gif	4	# IPv6 and IPv4 tunneling
112#device		faith	1	# IPv6-to-IPv4 relaying (translation)
113device		tap
114
115#options               DEVICE_POLLING
116
117# The `bpf' device enables the Berkeley Packet Filter.
118# Be aware of the administrative consequences of enabling this!
119device		bpf		# Berkeley packet filter
120