diff options
-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 }, |