diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-05-29 04:16:11 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-05-29 04:16:11 +0000 |
commit | d533ff01b0e7fecf6829b87c5eb45fac1a24daa8 (patch) | |
tree | baa5cc17d5d8abebf45492724ab6c004d9ba5e8c /sys/arch/powerpc/conf/RAMDISKOFW | |
parent | 2de1e4190b510b46917c96c19d7ebd01a07b41b8 (diff) |
Major changes here and there, tweaks elsewhere.
Support for Openfirmware drivers was reintroduced so that more systems
were supported. This should work with the real driver configurations
as well.
Bootloader files were deleted/replaced with the newer versions in the
subdirectory. Some effort has been made to be closer to support booting
(at least the bootloader) on the Mac.
Config files that end with OFW are the openfirmware versions of the kernels
without have native drivers.
Native driver support has not been changed, presumably it still works.
I couldn't test that.
Diffstat (limited to 'sys/arch/powerpc/conf/RAMDISKOFW')
-rw-r--r-- | sys/arch/powerpc/conf/RAMDISKOFW | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/sys/arch/powerpc/conf/RAMDISKOFW b/sys/arch/powerpc/conf/RAMDISKOFW new file mode 100644 index 00000000000..b6a5933ac28 --- /dev/null +++ b/sys/arch/powerpc/conf/RAMDISKOFW @@ -0,0 +1,82 @@ +# +# First try for PPC GENERIC config file +# + +machine powerpc + +maxusers 32 + +# Standard system options (should go into std.powerpc?) +options SWAPPAGER, VNODEPAGER, DEVPAGER +options EXEC_ELF +options SYS_TYPE=OFWMACH + +# various hacks due to bugs in Openfirmware implementation +options FIREPOWERBUGS + +#options IPKDBUSERHACK +#makeoptions DEBUG="-g" + +options DDB +options KTRACE +options SYSCALL_DEBUG +options TCP_COMPAT_42 +options COMPAT_43 +options COMPAT_09 +options COMPAT_10 +options COMPAT_12 + +options FFS +options MFS + +options NFSCLIENT +#options NFSSERVER + +options CD9660 +options MSDOSFS +options FDESC +options FIFO +options KERNFS +options NULLFS +#options PORTAL +options PROCFS +#options UMAPFS +#options UNION + +options INET +options NMBCLUSTERS=1024 + +#options MAXUSERS=20 +#options TARGET_ELF + +config bsd root on rd0a swap on rd0b + +mainbus0 at root +cpu* at mainbus0 + +ofroot* at root + +ofbus* at openfirm? + +ofdisk* at openfirm? + +ofnet* at openfirm? +#ipkdbif0 at ofnet? + +ofcons* at openfirm? + +ofrtc* at openfirm? + +pseudo-device loop +pseudo-device pty 64 +pseudo-device random 1 +pseudo-device rd +pseudo-device vnd 1 + + +# RAMDISK stuff +option MINIROOTSIZE=8192 +option RAMDISK_HOOKS + + + |