diff options
author | marcel <marcel@FreeBSD.org> | 2008-10-23 02:16:38 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2008-10-23 02:16:38 +0000 |
commit | ea4a9c958548a61ba7a299ab941ae4794e09faf0 (patch) | |
tree | 53be362d6a36f34b67c1aeafdb6900fe1a6fe0a3 /sys/mips | |
parent | 0b891188402f8f36b7030ec68be51747af5a1cbd (diff) | |
download | FreeBSD-src-ea4a9c958548a61ba7a299ab941ae4794e09faf0.zip FreeBSD-src-ea4a9c958548a61ba7a299ab941ae4794e09faf0.tar.gz |
Add mips/conf/DEFAULTS and populate it with:
machine arm
device mem
device uart_ns8250
options GEOM_BSD
options GEOM_MBR
Remove the first three from all kernel configuration files
(sometimes commented-out) and change geom_bsd and geom_mbr
from standard to optional.
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/conf/ADM5120 | 3 | ||||
-rw-r--r-- | sys/mips/conf/DEFAULTS | 13 | ||||
-rw-r--r-- | sys/mips/conf/IDT | 2 | ||||
-rw-r--r-- | sys/mips/conf/MALTA | 3 | ||||
-rw-r--r-- | sys/mips/conf/QEMU | 2 | ||||
-rw-r--r-- | sys/mips/conf/SENTRY5 | 3 |
6 files changed, 13 insertions, 13 deletions
diff --git a/sys/mips/conf/ADM5120 b/sys/mips/conf/ADM5120 index e1b3a71..a03d102 100644 --- a/sys/mips/conf/ADM5120 +++ b/sys/mips/conf/ADM5120 @@ -17,7 +17,6 @@ # # $FreeBSD$ -machine mips ident ADM5120 #makeoptions ARCH_FLAGS=-march=mips32 @@ -66,5 +65,3 @@ device loop device ether device uart # device md -# device mem -# device uart_ns8250 diff --git a/sys/mips/conf/DEFAULTS b/sys/mips/conf/DEFAULTS new file mode 100644 index 0000000..18a9a26 --- /dev/null +++ b/sys/mips/conf/DEFAULTS @@ -0,0 +1,13 @@ +# +# DEFAULTS -- Default kernel configuration file for FreeBSD/mips +# +# $FreeBSD$ + +machine mips + +device mem + +device uart_ns8250 + +options GEOM_BSD +options GEOM_MBR diff --git a/sys/mips/conf/IDT b/sys/mips/conf/IDT index 522df2d..e85847b 100644 --- a/sys/mips/conf/IDT +++ b/sys/mips/conf/IDT @@ -1,6 +1,5 @@ # $FreeBSD$ -machine mips cpu CPU_MIPS4KC ident RB532 @@ -38,7 +37,6 @@ device miibus device vr device kr device uart -device uart_ns8250 device md # Wireless NIC cards diff --git a/sys/mips/conf/MALTA b/sys/mips/conf/MALTA index 1320a5e..9771c55 100644 --- a/sys/mips/conf/MALTA +++ b/sys/mips/conf/MALTA @@ -17,7 +17,6 @@ # # $FreeBSD$ -machine mips ident MALTA #makeoptions ARCH_FLAGS=-march=mips32 @@ -66,6 +65,4 @@ device ether device le device miibus device md -device mem device uart -device uart_ns8250 diff --git a/sys/mips/conf/QEMU b/sys/mips/conf/QEMU index 9f18391..0a2b122 100644 --- a/sys/mips/conf/QEMU +++ b/sys/mips/conf/QEMU @@ -17,7 +17,6 @@ # # $FreeBSD$ -machine mips cpu CPU_MIPS32 ident QEMU @@ -53,5 +52,4 @@ options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions device loop device ether -device mem device md diff --git a/sys/mips/conf/SENTRY5 b/sys/mips/conf/SENTRY5 index fd12c1e..269a901 100644 --- a/sys/mips/conf/SENTRY5 +++ b/sys/mips/conf/SENTRY5 @@ -24,7 +24,6 @@ # will be necessary to support multi-user boot. # -machine mips ident SENTRY5 cpu CPU_MIPS4KC options CPU_NOFPU @@ -91,9 +90,7 @@ device ehci # EHCI PCI->USB interface (USB 2.0) # XXX notyet; need to be auto probed children of siba_cc. #device uart -#device uart_ns8250 device loop device ether device md -device mem |