Add missing file probably forgotten from previous commit
This commit is contained in:
parent
b3ddbd9504
commit
124f628b5d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50208
134
release/picobsd/isp/PICOBSD
Normal file
134
release/picobsd/isp/PICOBSD
Normal file
@ -0,0 +1,134 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
machine i386
|
||||
cpu I386_CPU
|
||||
cpu I486_CPU
|
||||
cpu I586_CPU
|
||||
cpu I686_CPU
|
||||
ident PICOBSD
|
||||
maxusers 20
|
||||
|
||||
options MATH_EMULATE #Support for x87 emulation
|
||||
options INET #InterNETworking
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options FFS_ROOT #FFS usable as root device [keep this!]
|
||||
options NFS #Network Filesystem
|
||||
#options BOOTP
|
||||
options MFS #Memory Filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options USERCONFIG #boot -c editor
|
||||
options INTRO_USERCONFIG #imply -c and parse info area
|
||||
options VISUAL_USERCONFIG #visual boot -c editor
|
||||
options IPFIREWALL
|
||||
options IPFIREWALL_DEFAULT_TO_ACCEPT
|
||||
options IPDIVERT
|
||||
#options DEVFS
|
||||
options PCI_QUIET
|
||||
# Support for bridging and bandwidth limiting
|
||||
#options DUMMYNET
|
||||
#options BRIDGE
|
||||
|
||||
controller isa0
|
||||
controller pci0
|
||||
|
||||
controller fdc0 at isa? port IO_FD1 irq 6 drq 2
|
||||
disk fd0 at fdc0 drive 0
|
||||
#disk fd1 at fdc0 drive 1
|
||||
|
||||
controller wdc0 at isa? port IO_WD1 irq 14
|
||||
disk wd0 at wdc0 drive 0
|
||||
disk wd1 at wdc0 drive 1
|
||||
|
||||
controller wdc1 at isa? port IO_WD2 irq 15
|
||||
disk wd2 at wdc1 drive 0
|
||||
disk wd3 at wdc1 drive 1
|
||||
|
||||
device wcd0 #IDE CD-ROM
|
||||
|
||||
# atkbdc0 controlls both the keyboard and the PS/2 mouse
|
||||
controller atkbdc0 at isa? port IO_KBD
|
||||
device atkbd0 at atkbdc? irq 1
|
||||
|
||||
device vga0 at isa? port ? conflicts
|
||||
|
||||
# syscons is the default console driver, resembling an SCO console
|
||||
device sc0 at isa?
|
||||
|
||||
device npx0 at nexus? port IO_NPX irq 13
|
||||
|
||||
device sio0 at isa? port IO_COM1 flags 0x10 irq 4
|
||||
device sio1 at isa? port IO_COM2 irq 3
|
||||
device sio2 at isa? port IO_COM3 irq 5
|
||||
device sio3 at isa? port IO_COM4 irq 9
|
||||
|
||||
# Support for multiport serial cards
|
||||
|
||||
options COM_MULTIPORT
|
||||
|
||||
# AST
|
||||
|
||||
device sio4 at isa? port 0x2a0 flags 0x701
|
||||
device sio5 at isa? port 0x2a8 flags 0x701
|
||||
device sio6 at isa? port 0x2b0 flags 0x701
|
||||
device sio7 at isa? port 0x2b8 flags 0x701 irq 12
|
||||
|
||||
# Boca Board. You must configure the ports above with -c to change the flags.
|
||||
|
||||
device sio8 at isa? port 0x120 flags 0xb05
|
||||
device sio9 at isa? port 0x128 flags 0xb05
|
||||
device sio10 at isa? port 0x130 flags 0xb05
|
||||
device sio11 at isa? port 0x138 flags 0xb05 irq 12
|
||||
|
||||
# Hayes ESP boards
|
||||
|
||||
options COM_ESP
|
||||
|
||||
# Comtrol Rocketport
|
||||
# The PCI versions
|
||||
#device rp0
|
||||
#device rp1
|
||||
# The ISA versions
|
||||
device rp0 at isa? port 0x100
|
||||
device rp1 at isa? port 0x180
|
||||
|
||||
# Cyclades Cyclom-Y serial driver
|
||||
device cy0 at isa? irq 10 iomem 0xd4000 iosiz 0x2000
|
||||
device cy1 at isa? irq 11 iomem 0xd6000 iosiz 0x2000
|
||||
|
||||
device ppc0 at isa? port? flags 0x40 irq 7
|
||||
controller ppbus0
|
||||
device lpt0 at ppbus?
|
||||
device plip0 at ppbus?
|
||||
device ppi0 at ppbus?
|
||||
|
||||
#
|
||||
# The following Ethernet NICs are all PCI devices.
|
||||
#
|
||||
device de0 # DEC/Intel DC21x4x (``Tulip'')
|
||||
device fxp0 # Intel EtherExpress PRO/100B (82557, 82558)
|
||||
|
||||
# Order is important here due to intrusive probes, do *not* alphabetize
|
||||
# this list of network interfaces until the probes have been fixed.
|
||||
# Right now it appears that the ie0 must be probed before ep0. See
|
||||
# revision 1.20 of this file.
|
||||
|
||||
device ed0 at isa? port 0x280 irq 5 iomem 0xd8000
|
||||
device ed1 at isa? port 0x300 irq 5 iomem 0xd0000
|
||||
device ep0 at isa? port 0x300 irq 10
|
||||
device ep1 at isa? port 0x280 irq 5
|
||||
device ie0 at isa? port 0x300 irq 5 iomem 0xd0000
|
||||
device lnc0 at isa? port 0x300 irq 10 drq 0
|
||||
|
||||
pseudo-device loop
|
||||
pseudo-device ether
|
||||
# iijppp uses tun instead of ppp device
|
||||
pseudo-device ppp 8
|
||||
pseudo-device tun 2
|
||||
#pseudo-device vn
|
||||
pseudo-device pty 16
|
||||
#pseudo-device gzip # Exec gzipped a.out's
|
96
release/picobsd/net/PICOBSD
Normal file
96
release/picobsd/net/PICOBSD
Normal file
@ -0,0 +1,96 @@
|
||||
#
|
||||
# $Id: PICOBSD,v 1.12 1999/08/22 21:44:19 dwhite dead $
|
||||
#
|
||||
|
||||
machine i386
|
||||
cpu I386_CPU
|
||||
cpu I486_CPU
|
||||
cpu I586_CPU
|
||||
cpu I686_CPU
|
||||
ident PICOBSD
|
||||
maxusers 10
|
||||
|
||||
options MATH_EMULATE #Support for x87 emulation
|
||||
options INET #InterNETworking
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options FFS_ROOT #FFS usable as root device [keep this!]
|
||||
options NFS #Network Filesystem
|
||||
options MFS #Memory Filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options USERCONFIG #boot -c editor
|
||||
options INTRO_USERCONFIG #imply -c and parse info area
|
||||
options VISUAL_USERCONFIG #visual boot -c editor
|
||||
options IPFIREWALL
|
||||
options IPFIREWALL_DEFAULT_TO_ACCEPT
|
||||
options IPDIVERT
|
||||
options PCI_QUIET
|
||||
#options DEVFS
|
||||
# Support for bridging and bandwidth limiting
|
||||
#options DUMMYNET
|
||||
#options BRIDGE
|
||||
|
||||
controller isa0
|
||||
controller pci0
|
||||
|
||||
controller fdc0 at isa? port IO_FD1 irq 6 drq 2
|
||||
disk fd0 at fdc0 drive 0
|
||||
#disk fd1 at fdc0 drive 1
|
||||
|
||||
controller wdc0 at isa? port IO_WD1 irq 14
|
||||
disk wd0 at wdc0 drive 0
|
||||
disk wd1 at wdc0 drive 1
|
||||
|
||||
controller wdc1 at isa? port IO_WD2 irq 15
|
||||
disk wd2 at wdc1 drive 0
|
||||
disk wd3 at wdc1 drive 1
|
||||
|
||||
device wcd0 #IDE CD-ROM
|
||||
|
||||
# atkbdc0 controlls both the keyboard and the PS/2 mouse
|
||||
controller atkbdc0 at isa? port IO_KBD
|
||||
device atkbd0 at atkbdc? irq 1
|
||||
|
||||
device vga0 at isa? port ? conflicts
|
||||
|
||||
# syscons is the default console driver, resembling an SCO console
|
||||
device sc0 at isa?
|
||||
|
||||
device npx0 at nexus? port IO_NPX irq 13
|
||||
|
||||
device sio0 at isa? port IO_COM1 flags 0x10 irq 4
|
||||
device sio1 at isa? port IO_COM2 irq 3
|
||||
device sio2 at isa? disable port IO_COM3 irq 5
|
||||
device sio3 at isa? disable port IO_COM4 irq 9
|
||||
|
||||
device ppc0 at isa? port? flags 0x40 irq 7
|
||||
controller ppbus0
|
||||
device lpt0 at ppbus?
|
||||
device plip0 at ppbus?
|
||||
device ppi0 at ppbus?
|
||||
|
||||
#
|
||||
# The following Ethernet NICs are all PCI devices.
|
||||
#
|
||||
device de0 # DEC/Intel DC21x4x (``Tulip'')
|
||||
device fxp0 # Intel EtherExpress PRO/100B (82557, 82558)
|
||||
|
||||
# Order is important here due to intrusive probes, do *not* alphabetize
|
||||
# this list of network interfaces until the probes have been fixed.
|
||||
# Right now it appears that the ie0 must be probed before ep0. See
|
||||
# revision 1.20 of this file.
|
||||
|
||||
device ed0 at isa? port 0x280 irq 5 iomem 0xd8000
|
||||
device ed1 at isa? port 0x300 irq 10 iomem 0xd0000
|
||||
device ep0 at isa? port 0x300 irq 10
|
||||
device ep1 at isa? port 0x280 irq 5
|
||||
device ie0 at isa? port 0x300 irq 5 iomem 0xd0000
|
||||
device ie1 at isa? port 0x360 irq 7 iomem 0xd0000
|
||||
|
||||
pseudo-device loop
|
||||
pseudo-device ether
|
||||
pseudo-device tun 2
|
||||
#pseudo-device vn
|
||||
pseudo-device pty 16
|
||||
#pseudo-device gzip # Exec gzipped a.out's
|
100
release/picobsd/router/PICOBSD
Normal file
100
release/picobsd/router/PICOBSD
Normal file
@ -0,0 +1,100 @@
|
||||
#
|
||||
# $Id: PICOBSD,v 1.16 1999/08/22 21:44:46 dwhite dead $
|
||||
#
|
||||
|
||||
machine i386
|
||||
cpu I386_CPU
|
||||
cpu I486_CPU
|
||||
cpu I586_CPU
|
||||
cpu I686_CPU
|
||||
ident PICOBSD
|
||||
maxusers 10
|
||||
|
||||
#options MATH_EMULATE #Support for x87 emulation
|
||||
options INET #InterNETworking
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options FFS_ROOT #FFS usable as root device [keep this!]
|
||||
#options NFS #Network Filesystem
|
||||
options MFS #Memory Filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options USERCONFIG #boot -c editor
|
||||
#options USERCONFIG_BOOT #imply -c and parse info area
|
||||
#options VISUAL_USERCONFIG #visual boot -c editor
|
||||
options IPFIREWALL
|
||||
options IPFIREWALL_DEFAULT_TO_ACCEPT
|
||||
options IPDIVERT
|
||||
options PCI_QUIET
|
||||
#options DEVFS
|
||||
options NO_SWAPPING
|
||||
# Support for bridging and bandwidth limiting
|
||||
#options DUMMYNET
|
||||
#options BRIDGE
|
||||
|
||||
controller isa0
|
||||
controller pci0
|
||||
|
||||
controller fdc0 at isa? port IO_FD1 irq 6 drq 2
|
||||
disk fd0 at fdc0 drive 0
|
||||
#disk fd1 at fdc0 drive 1
|
||||
|
||||
#controller wdc0 at isa? port IO_WD1 irq 14
|
||||
#disk wd0 at wdc0 drive 0
|
||||
#disk wd1 at wdc0 drive 1
|
||||
|
||||
#controller wdc1 at isa? port IO_WD2 irq 15
|
||||
#disk wd2 at wdc1 drive 0
|
||||
#disk wd3 at wdc1 drive 1
|
||||
|
||||
#device wcd0 #IDE CD-ROM
|
||||
|
||||
# atkbdc0 controlls both the keyboard and the PS/2 mouse
|
||||
controller atkbdc0 at isa? port IO_KBD
|
||||
device atkbd0 at atkbdc? irq 1
|
||||
|
||||
device vga0 at isa? port ? conflicts
|
||||
|
||||
# syscons is the default console driver, resembling an SCO console
|
||||
device sc0 at isa?
|
||||
|
||||
device npx0 at nexus? port IO_NPX irq 13
|
||||
|
||||
device sio0 at isa? port IO_COM1 flags 0x10 irq 4
|
||||
device sio1 at isa? port IO_COM2 irq 3
|
||||
device sio2 at isa? disable port IO_COM3 irq 5
|
||||
device sio3 at isa? disable port IO_COM4 irq 9
|
||||
|
||||
#device ppc0 at isa? port? flags 0x40 irq 7
|
||||
#controller ppbus0
|
||||
#device lpt0 at ppbus?
|
||||
#device plip0 at ppbus?
|
||||
#device ppi0 at ppbus?
|
||||
|
||||
#
|
||||
# The following Ethernet NICs are all PCI devices.
|
||||
#
|
||||
device de0 # DEC/Intel DC21x4x (``Tulip'')
|
||||
device fxp0 # Intel EtherExpress PRO/100B (82557, 82558)
|
||||
|
||||
# Order is important here due to intrusive probes, do *not* alphabetize
|
||||
# this list of network interfaces until the probes have been fixed.
|
||||
# Right now it appears that the ie0 must be probed before ep0. See
|
||||
# revision 1.20 of this file.
|
||||
|
||||
device ed0 at isa? port 0x280 irq 5 iomem 0xd8000
|
||||
device ed1 at isa? port 0x300 irq 10 iomem 0xd0000
|
||||
device ep0 at isa? port 0x300 irq 10
|
||||
device ep1 at isa? port 0x280 irq 5
|
||||
device ie0 at isa? port 0x300 irq 5 iomem 0xd0000
|
||||
device ie1 at isa? port 0x360 irq 7 iomem 0xd0000
|
||||
|
||||
pseudo-device loop
|
||||
pseudo-device ether
|
||||
#pseudo-device tun 2
|
||||
#pseudo-device vn
|
||||
#pseudo-device bpf 4
|
||||
pseudo-device ppp 4
|
||||
pseudo-device pty 16
|
||||
#pseudo-device gzip # Exec gzipped a.out's
|
Loading…
Reference in New Issue
Block a user