diff options
author | des <des@FreeBSD.org> | 2005-02-10 10:46:27 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-02-10 10:46:27 +0000 |
commit | 85471cb3ce014b07a43d213e5bf1e14542223cfd (patch) | |
tree | 8e687a3bc1a58f0559a19f2802bd1e63b3275470 /usr.sbin/config | |
parent | e6388323e99e0b7621ce3724ac9d9fd6509b455c (diff) | |
download | FreeBSD-src-85471cb3ce014b07a43d213e5bf1e14542223cfd.zip FreeBSD-src-85471cb3ce014b07a43d213e5bf1e14542223cfd.tar.gz |
"device" and "nodevice" lines can actually specify more than one device
(separated by commas), so add "devices" and "nodevices" as aliases.
MFC after: 2 weeks
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/lang.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/config/lang.l b/usr.sbin/config/lang.l index f433220..39f3bd6 100644 --- a/usr.sbin/config/lang.l +++ b/usr.sbin/config/lang.l @@ -63,7 +63,9 @@ struct kt { { "config", CONFIG }, { "cpu", CPU }, { "device", DEVICE }, + { "devices", DEVICE }, { "nodevice", NODEVICE }, + { "nodevices", NODEVICE }, { "env", ENV }, { "hints", HINTS }, { "ident", IDENT }, |