diff options
author | peter <peter@FreeBSD.org> | 1999-10-08 06:20:43 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-10-08 06:20:43 +0000 |
commit | 8a1cbec077496d82fa3aa5534ae8fb34e144cca3 (patch) | |
tree | 0956d0442208cf3a8c222a1ad1329bdb073f67f0 /usr.sbin/config | |
parent | ac618b26857064ead071e5d5aa93f245236e1987 (diff) | |
download | FreeBSD-src-8a1cbec077496d82fa3aa5534ae8fb34e144cca3.zip FreeBSD-src-8a1cbec077496d82fa3aa5534ae8fb34e144cca3.tar.gz |
Zap references to 'major' token, it's not used.
Zap references to devices.i386 - it's not used. (neither is devices.pc98
or devices.alpha)
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/config.8 | 3 | ||||
-rw-r--r-- | usr.sbin/config/config.y | 2 | ||||
-rw-r--r-- | usr.sbin/config/lang.l | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/usr.sbin/config/config.8 b/usr.sbin/config/config.8 index c27d255..ad3af6b 100644 --- a/usr.sbin/config/config.8 +++ b/usr.sbin/config/config.8 @@ -217,9 +217,6 @@ generic makefile for the list of .Tn i386 specific files -.It Pa /sys/i386/conf/devices.i386 -name to major device mapping file for the -.Tn i386 .It Pa /sys/i386/conf/files. Ns Em ERNIE list of files specific to .Em ERNIE diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y index 37cc9df..d71d0fa 100644 --- a/usr.sbin/config/config.y +++ b/usr.sbin/config/config.y @@ -27,7 +27,6 @@ %token IOSIZ %token IRQ %token MACHINE -%token MAJOR %token MASTER %token MAXUSERS %token MINOR @@ -93,6 +92,7 @@ * SUCH DAMAGE. * * @(#)config.y 8.1 (Berkeley) 6/6/93 + * $FreeBSD$ */ #include <ctype.h> diff --git a/usr.sbin/config/lang.l b/usr.sbin/config/lang.l index b8ae325..1bc0704 100644 --- a/usr.sbin/config/lang.l +++ b/usr.sbin/config/lang.l @@ -32,6 +32,7 @@ * SUCH DAMAGE. * * @(#)lang.l 8.1 (Berkeley) 6/6/93 + * $FreeBSD$ */ #include <ctype.h> @@ -71,7 +72,6 @@ struct kt { { "iosiz", IOSIZ }, { "irq", IRQ }, { "machine", MACHINE }, - { "major", MAJOR }, { "makeoptions", MAKEOPTIONS }, { "master", MASTER }, { "maxusers", MAXUSERS }, |