aboutsummaryrefslogtreecommitdiff
path: root/util/newconfig
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2003-06-25 03:20:22 +0000
committerRonald G. Minnich <rminnich@gmail.com>2003-06-25 03:20:22 +0000
commit0f28460efbf4548c8bcfc2b20419f8375cd231c7 (patch)
tree8547adb25dc94fd1ba927f389e58b370ea4a4df5 /util/newconfig
parented27a5e5474b0c23dbedca9519f72265a8f1cf51 (diff)
more fixes but it appears that options are not picking up the right values.
I set USE_FALLBACK_IMAGE to 1 in the top-level Config, but when it is tested in arima/hdama/Config.lb, it is acting as though it is zero. Also added a print command so it is easier to trace 'if' behavior. Usage: print "string" git-svn-id: svn://svn.coreboot.org/coreboot/trunk@913 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig')
-rw-r--r--util/newconfig/config.g4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g
index 0b96569889..e6a3787f62 100644
--- a/util/newconfig/config.g
+++ b/util/newconfig/config.g
@@ -955,6 +955,7 @@ parser Config:
token OPTION: 'option'
token PAYLOAD: 'payload'
token PMC: 'pmc'
+ token PRINT: 'print'
token REGISTER: 'register'
token SOUTHBRIDGE: 'southbridge'
token SUPERIO: 'superio'
@@ -1084,6 +1085,7 @@ parser Config:
| dir<<C>> {{ return dir}}
| ldscript<<C>> {{ return ldscript}}
| payload<<C>> {{ return payload}}
+ | pprint<<C>> {{ return pprint}}
# ENTRY for parsing Config.lb file
rule cfgfile: (uses<<1>>)* (stmt<<1>>)*
@@ -1104,6 +1106,8 @@ parser Config:
rule opstmt: option<<1>>
| opif
+ # print clashes with a python keyword
+ rule pprint<<C>>: PRINT STR {{ if (C): print "%s\n"%STR}}
# ENTRY for parsing a delayed value
rule delexpr: "{" expr "}" {{ return expr }}