diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-10-28 15:30:53 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-10-28 15:30:53 +0000 |
| commit | 218f2e0ec572a50510998bcc46f55d07bc3da227 (patch) | |
| tree | 45495da904a097490987904ad4fd312d1de4f1e1 | |
| parent | 527ef1908a565a842728623fa3b08c407ccbc8b1 (diff) | |
Notes
| -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 |
