diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-11 20:57:57 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-11 20:57:57 +0000 |
commit | 999ca9c7988f32f2490c96d2c397338088c1afe9 (patch) | |
tree | e5fab7e5343962c52b01ba030f4919723e39be3d /sys/arch | |
parent | 61f87e779bae6a409bbfded1d690760a662452c6 (diff) |
We'll need a RAMDISK kernel too.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/socppc/conf/RAMDISK | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/sys/arch/socppc/conf/RAMDISK b/sys/arch/socppc/conf/RAMDISK new file mode 100644 index 00000000000..8fb84629af1 --- /dev/null +++ b/sys/arch/socppc/conf/RAMDISK @@ -0,0 +1,69 @@ +# $OpenBSD: RAMDISK,v 1.1 2008/05/11 20:57:56 kettenis Exp $ + +machine socppc powerpc + +maxusers 32 # estimated number of users + +option PCIVERBOSE +option USBVERBOSE + +option FFS # UFS +option NFSCLIENT # Network File System client +option CD9660 # ISO 9660 + Rock Ridge file system +option UDF # UDF (DVD) file system +option MSDOSFS # MS-DOS file system +option INET # IP + ICMP + TCP + UDP +option INET6 # IPv6 (needs INET) +option DDB # kernel debugger + +config bsd root on rd0a swap on rd0b + +mainbus0 at root +cpu0 at mainbus0 +obio0 at mainbus0 + +# On-board IPIC +ipic0 at obio? addr 0x00700 + +# On-board I2C +sociic0 at obio? addr 0x03000 ivec 14 +sociic1 at obio? addr 0x03100 ivec 15 +iic* at sociic? +ricohrtc0 at iic? addr 0x32 # Ricoh RTC +fintek0 at iic? flags 0x0001 # temp/fan controller + +# On-board DUART +com0 at obio? addr 0x04500 ivec 9 +com1 at obio? addr 0x04600 ivec 10 + +# On-board PCI +socpcic0 at obio? addr 0x08300 +socpcic1 at obio? addr 0x08380 +pci* at socpcic? + +pciide* at pci? +wd* at pciide? flags 0x0000 + +# On-board USB +ehci0 at obio? addr 0x22100 ivec 39 +usb* at ehci? + +# USB devices +uhub* at usb? # USB Hubs +uhub* at uhub? # USB Hubs +umass* at uhub? # USB Mass Storage devices +scsibus* at umass? +ural* at uhub? # Ralink RT2500USB +rum* at uhub? # Ralink RT2501USB/RT2601USB + +sd* at scsibus? + +pseudo-device loop 1 # network loopback +pseudo-device bpfilter 1 # packet filter +pseudo-device rd 1 # ram disk + +option BOOT_CONFIG # boot-time kernel config + +# RAMDISK stuff +option MINIROOTSIZE=8192 +option RAMDISK_HOOKS |