summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config/config.y
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-05-26 13:24:02 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-05-26 13:24:02 +0000
commitc8f1a26f8dda7f5350f6d52f5bbc4f5ec1a46cc4 (patch)
tree091be2a230c62c316ca02cf1016e73b206c14d25 /usr.sbin/config/config.y
parent28839c379536620b072ba59884f5eed06d72e94d (diff)
downloadFreeBSD-src-c8f1a26f8dda7f5350f6d52f5bbc4f5ec1a46cc4.zip
FreeBSD-src-c8f1a26f8dda7f5350f6d52f5bbc4f5ec1a46cc4.tar.gz
Upgrade config to be compatible with our i386 port, pull in 95% of the
changes that have been made in FreeBSD 1.x, except for possibly the nfs diskless support this is a completed config.
Diffstat (limited to 'usr.sbin/config/config.y')
-rw-r--r--usr.sbin/config/config.y10
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y
index 6784d9e..69b29b3 100644
--- a/usr.sbin/config/config.y
+++ b/usr.sbin/config/config.y
@@ -191,7 +191,7 @@ Config_spec:
System_spec
|
HZ NUMBER
- = { hz = $2; }|
+ = { yyerror("HZ specification obsolete; delete"); } |
TIMEZONE NUMBER
= { zone = 60 * $2; check_tz(); } |
TIMEZONE NUMBER DST NUMBER
@@ -235,12 +235,18 @@ System_parameter_list:
;
System_parameter:
- swap_spec
+ addr_spec
+ | swap_spec
| root_spec
| dump_spec
| arg_spec
;
+addr_spec:
+ AT NUMBER
+ = { loadaddress = $2; };
+ ;
+
swap_spec:
SWAP optional_on swap_device_list
;
OpenPOWER on IntegriCloud