diff options
| -rw-r--r-- | sys/amd64/conf/DEFAULTS | 14 | ||||
| -rw-r--r-- | sys/i386/conf/DEFAULTS | 17 | ||||
| -rw-r--r-- | sys/pc98/conf/DEFAULTS | 18 |
3 files changed, 49 insertions, 0 deletions
diff --git a/sys/amd64/conf/DEFAULTS b/sys/amd64/conf/DEFAULTS new file mode 100644 index 000000000000..cf822b3a9666 --- /dev/null +++ b/sys/amd64/conf/DEFAULTS @@ -0,0 +1,14 @@ +# +# DEFAULTS -- Default kernel configuration file for FreeBSD/amd64 +# +# $FreeBSD$ + +# Not yet, this would break all existing configs +#machine amd64 + +# Bus support. +device isa + +# Pseudo devices. +device mem # Memory and kernel memory devices +device io # I/O device diff --git a/sys/i386/conf/DEFAULTS b/sys/i386/conf/DEFAULTS new file mode 100644 index 000000000000..60cb04a5e979 --- /dev/null +++ b/sys/i386/conf/DEFAULTS @@ -0,0 +1,17 @@ +# +# DEFAULTS -- Default kernel configuration file for FreeBSD/i386 +# +# $FreeBSD$ + +# Not yet, this would break all existing configs +#machine i386 + +# Bus support. +device isa + +# Floating point support. +device npx + +# Pseudo devices. +device mem # Memory and kernel memory devices +device io # I/O device diff --git a/sys/pc98/conf/DEFAULTS b/sys/pc98/conf/DEFAULTS new file mode 100644 index 000000000000..bb0dab4a11ca --- /dev/null +++ b/sys/pc98/conf/DEFAULTS @@ -0,0 +1,18 @@ +# +# DEFAULTS -- Default kernel configuration file for FreeBSD/pc98 +# +# $FreeBSD$ + +# Not yet, this would break all existing configs +#machine pc98 i386 +options PC98 + +# Bus support. +device isa + +# Floating point support. +device npx + +# Pseudo devices. +device mem # Memory and kernel memory devices +device io # I/O device |
