diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-09-20 22:11:49 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-09-20 22:11:49 +0000 |
commit | 272c238b9194d34cac9c383517eebd94f9236b96 (patch) | |
tree | 4ecbc722ea060e28f29b0fb004e4b58b82aa9ad0 /sys/arch/powerpc/conf | |
parent | 0122e03b77249539b13ea49c3ce4d2b54b01c11a (diff) |
Changes to probe for address, and frequency for serial console.
This should enable the same kernel to work on VI machines as
well as MCG machines. Only remaining piece is the rtc.
For now an extra config file has been added to use serial for MCG
machines until all issues are resolved. The various extra config
files and ramdisks should go away as soon as merger is finished.
Diffstat (limited to 'sys/arch/powerpc/conf')
-rw-r--r-- | sys/arch/powerpc/conf/SER | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/sys/arch/powerpc/conf/SER b/sys/arch/powerpc/conf/SER new file mode 100644 index 00000000000..13b58691876 --- /dev/null +++ b/sys/arch/powerpc/conf/SER @@ -0,0 +1,97 @@ +# +# First try for PPC GENERIC config file +# + +machine powerpc + +maxusers 32 + +options PPC_MPC106_BUG +# Standard system options (should go into std.powerpc?) +options SWAPPAGER, VNODEPAGER, DEVPAGER +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 + +# System V options +option SYSVMSG # System V-like message queues +option SYSVSEM # System V-like semaphores +option SYSVSHM # System V-like memory sharing +#option SHMMAXPGS=1024 # 1024 pages is the default + +#options MAXUSERS=20 +#options TARGET_ELF + +config bsd swap generic + +mainbus0 at root +cpu* at mainbus0 +ofroot* at mainbus0 +mpcpcibr* at mainbus0 # MPC106 PCI Bridge. +isabr* at pci? # ISA dev bridge. + +pci* at mpcpcibr? + +isa* at isabr? +com0 at isa? port 0x3f8 irq 4 +com1 at isa? port 0x2f8 irq 3 + +ncr* at pci? dev ? function ? +de* at pci? dev ? function ? + +scsibus* at ncr? +sd* at scsibus? target ? lun ? +st* at scsibus? target ? lun ? +cd* at scsibus? target ? lun ? + + +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 2 +pseudo-device bpfilter 8 # packet filter |