summaryrefslogtreecommitdiffstats
path: root/sys/i386/conf
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-10-17 13:47:31 +0000
committerbde <bde@FreeBSD.org>2002-10-17 13:47:31 +0000
commitd91054229567b7e8d98914d2335b054dac2635fe (patch)
treebc65b7390df5a3205eacc143638cb4fd02ac16a3 /sys/i386/conf
parent7bd58017041e3ab7011a1f56e5f43184cdc7126a (diff)
downloadFreeBSD-src-d91054229567b7e8d98914d2335b054dac2635fe.zip
FreeBSD-src-d91054229567b7e8d98914d2335b054dac2635fe.tar.gz
Fixed the quoting of the value of SC_CUT_SEPCHARS. The double quotes
needed to be quoted (to get a C string literal), not the value itself. Fixed the value of SC_CUT_SEPCHARS. Setting this value would have had no effect even if it were used, since the value was the same as the default. The above bugs had no effect except to set bad examples, since test coverage of SC_CUT_SEPCHARS is broken by enabling a negative option. Removed (unquoted) double quotes for all options. They were all bogus since they had no effect except to make non-strings look like strings. Most of the non-strings were expressions. The value of INIT_PATH is a non-string since it is stringified later (unlike SC_CUT_SEPCHARS). Fixed parenthesization errors inside bogus quotes (parenthesize values if they have more than one token in them but don't parenthesize single tokens).
Diffstat (limited to 'sys/i386/conf')
-rw-r--r--sys/i386/conf/NOTES4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 467ee68..08fcbf3 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -287,7 +287,7 @@ options COMPAT_OLDISA #Use ISA shims and glue for old drivers
options AUTO_EOI_1
#options AUTO_EOI_2
-options MAXMEM="(128*1024)"
+options MAXMEM=(128*1024)
#options BROKEN_KEYBOARD_RESET
#
@@ -1012,7 +1012,7 @@ options KBD_RESETDELAY=201
options PSM_DEBUG=1
-options TIMER_FREQ="((14318182+6)/12)"
+options TIMER_FREQ=((14318182+6)/12)
options VM_KMEM_SIZE
options VM_KMEM_SIZE_MAX
OpenPOWER on IntegriCloud