diff options
author | 1998-10-11 20:51:39 +0000 | |
---|---|---|
committer | 1998-10-11 20:51:39 +0000 | |
commit | 28cbf0fe82e5626a2940233df2927e66f8866d50 (patch) | |
tree | 347eb81b181877964f465cf166bfa9d946ce24a4 | |
parent | When rounding to cylinder boundaries check to make sure we don't round up past the end of the disk. Noticed by fries@ (diff) | |
download | wireguard-openbsd-28cbf0fe82e5626a2940233df2927e66f8866d50.tar.xz wireguard-openbsd-28cbf0fe82e5626a2940233df2927e66f8866d50.zip |
When copying several lines from one file to another, do not delete the lines
from the first file. (the last commit of this file had several lines missing.)
-rw-r--r-- | sys/arch/powerpc/conf/GENERIC | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/sys/arch/powerpc/conf/GENERIC b/sys/arch/powerpc/conf/GENERIC index ca1c9218aec..06267ceacb6 100644 --- a/sys/arch/powerpc/conf/GENERIC +++ b/sys/arch/powerpc/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.8 1998/10/10 06:31:30 rahnds Exp $ +# $OpenBSD: GENERIC,v 1.9 1998/10/11 20:51:39 rahnds Exp $ # # PPC GENERIC config file # @@ -19,6 +19,27 @@ include "../../../conf/GENERIC" config bsd swap generic +# +# Now the Machine specification +# +mainbus0 at root +cpu* at mainbus0 + +ofroot* at mainbus0 +mpcpcibr* at mainbus0 # MPC106 PCI Bridge. +isabr* at pci? # ISA dev bridge. +mpcpcibr* at mainbus0 # MPC106 PCI Bridge. +isabr* at mainbus0 # ISA dev bridge. + +#### PCI Bus devices. + +pci* at mpcpcibr? +ncr* at pci? dev ? function ? +scsibus* at ncr? +de* at pci? dev ? function ? +#vme* at pci? dev ? function ? +vga* at pci? dev ? function ? # PCI VGA graphics +vgafb0 at pci? dev ? function ? # PCI VGA graphics #### ISA Bus devices. |