mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Make this fit again into a 1.44 floppy.
We had to give up DDB and grep this time... Add a hint in "config" on how to increase the image size so we can stuff more things in the image (mostly for use on a CDROM).
This commit is contained in:
parent
c445626ad3
commit
a100324819
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91938
@ -3,8 +3,8 @@
|
|||||||
#
|
#
|
||||||
# Line starting with #PicoBSD contains PicoBSD build parameters
|
# Line starting with #PicoBSD contains PicoBSD build parameters
|
||||||
#marker def_sz init MFS_inodes floppy_inodes
|
#marker def_sz init MFS_inodes floppy_inodes
|
||||||
#PicoBSD 2200 init 8192 32768
|
#PicoBSD 3200 init 8192 32768
|
||||||
options MD_ROOT_SIZE=2200 # same as def_sz
|
options MD_ROOT_SIZE=3200 # same as def_sz
|
||||||
|
|
||||||
hints "PICOBSD.hints"
|
hints "PICOBSD.hints"
|
||||||
machine i386
|
machine i386
|
||||||
@ -13,9 +13,8 @@ cpu I486_CPU
|
|||||||
cpu I586_CPU
|
cpu I586_CPU
|
||||||
cpu I686_CPU
|
cpu I686_CPU
|
||||||
ident PICOBSD
|
ident PICOBSD
|
||||||
maxusers 20
|
|
||||||
|
|
||||||
#options MATH_EMULATE #Support for x87 emulation
|
#options MATH_EMULATE #Support for x87 emulation
|
||||||
options INET #InterNETworking
|
options INET #InterNETworking
|
||||||
#options INET6
|
#options INET6
|
||||||
options FFS #Berkeley Fast Filesystem
|
options FFS #Berkeley Fast Filesystem
|
||||||
@ -32,18 +31,17 @@ options MD_ROOT #MD is a potential root device
|
|||||||
#options PROCFS #Process filesystem
|
#options PROCFS #Process filesystem
|
||||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||||
|
|
||||||
options DDB
|
#options DDB
|
||||||
|
|
||||||
options IPFIREWALL
|
options IPFIREWALL
|
||||||
options IPFIREWALL_DEFAULT_TO_ACCEPT
|
options IPFIREWALL_DEFAULT_TO_ACCEPT
|
||||||
options IPDIVERT # divert (for natd)
|
options IPDIVERT # divert (for natd)
|
||||||
options PCI_QUIET #quiets PCI code on chipset settings
|
|
||||||
|
|
||||||
# Support for bridging and bandwidth limiting
|
# Support for bridging and bandwidth limiting
|
||||||
options DUMMYNET
|
options DUMMYNET
|
||||||
options BRIDGE
|
options BRIDGE
|
||||||
options HZ=1000
|
options HZ=1000
|
||||||
options NMBCLUSTERS=4096
|
#options NMBCLUSTERS=4096
|
||||||
|
|
||||||
device isa
|
device isa
|
||||||
device pci
|
device pci
|
||||||
@ -93,14 +91,14 @@ device sio
|
|||||||
#
|
#
|
||||||
device miibus
|
device miibus
|
||||||
#device de # DEC/Intel DC21x4x (``Tulip'')
|
#device de # DEC/Intel DC21x4x (``Tulip'')
|
||||||
device lnc
|
#device lnc
|
||||||
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
|
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
|
||||||
#device xl # 3Com
|
#device xl # 3Com
|
||||||
device rl # RealTek 8129/8139
|
device rl # RealTek 8129/8139
|
||||||
#device vx # 3Com 3c590, 3c595 (``Vortex'')
|
#device vx # 3Com 3c590, 3c595 (``Vortex'')
|
||||||
#device wx # Intel Gigabit Ethernet Card (``Wiseman'')
|
#device wx # Intel Gigabit Ethernet Card (``Wiseman'')
|
||||||
device dc # DEC/Intel 21143 and various workalikes
|
device dc # DEC/Intel 21143 and various workalikes
|
||||||
#device ed
|
device ed
|
||||||
|
|
||||||
device loop # Network loopback
|
device loop # Network loopback
|
||||||
device ether # Ethernet support
|
device ether # Ethernet support
|
||||||
@ -112,6 +110,7 @@ device md # Memory "disks"
|
|||||||
#device faith 1 # IPv6-to-IPv4 relaying (translation)
|
#device faith 1 # IPv6-to-IPv4 relaying (translation)
|
||||||
#device tap
|
#device tap
|
||||||
|
|
||||||
|
options DEVICE_POLLING
|
||||||
|
|
||||||
# The `bpf' device enables the Berkeley Packet Filter.
|
# The `bpf' device enables the Berkeley Packet Filter.
|
||||||
# Be aware of the administrative consequences of enabling this!
|
# Be aware of the administrative consequences of enabling this!
|
||||||
|
@ -3,3 +3,4 @@
|
|||||||
# by the shell much like rc.conf* files
|
# by the shell much like rc.conf* files
|
||||||
|
|
||||||
MY_DEVS="std tun2 vty10 fd0 ad0 pty0 cuaa0 cuaa1 bpf0 bpf1 bpf2"
|
MY_DEVS="std tun2 vty10 fd0 ad0 pty0 cuaa0 cuaa1 bpf0 bpf1 bpf2"
|
||||||
|
#fd_size="2880"
|
||||||
|
@ -132,7 +132,7 @@ progs disklabel # 4KB.
|
|||||||
progs fdisk # 4KB.
|
progs fdisk # 4KB.
|
||||||
progs vnconfig # 0KB.
|
progs vnconfig # 0KB.
|
||||||
|
|
||||||
progs grep # 16KB.
|
#progs grep # 16KB.
|
||||||
progs date # 4KB.
|
progs date # 4KB.
|
||||||
#progs mount_nfs # 0KB.
|
#progs mount_nfs # 0KB.
|
||||||
ln mount_nfs nfs
|
ln mount_nfs nfs
|
||||||
|
Loading…
Reference in New Issue
Block a user