diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-24 03:39:34 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-24 03:39:34 +0000 |
commit | c55613345ee6735d6ad8fbf68bca5512f19d2b01 (patch) | |
tree | 78099fd55e232e991eac83c45f1738a576a43583 /util/newconfig/config.g | |
parent | 7254a89c883fbab349b0b772b3bc982cc817dc5c (diff) |
add a hint for users about why:
Config.lb:0: Error: Option USE_FALLBACK_IMAGE Undefined.
might happen (i.e. missing 'use' command)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@897 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig/config.g')
-rw-r--r-- | util/newconfig/config.g | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index e37ef8e015..c80391c39f 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -369,7 +369,7 @@ def getoption(name, part): else: o = getvalue(options, name) if (o == 0 or not o.defined): - fatal( "Error: Option %s Undefined." % name) + fatal( "Error: Option %s Undefined (Missing use command?)." % name) v = o.getvalue(part) if (debug > 2): print "getoption returns %s" % v @@ -447,7 +447,7 @@ def getformated(name, part): else: o = getvalue(options, name) if (o == 0 or not o.defined): - fatal( "Error: Option %s Undefined." % name) + fatal( "Error: Option %s Undefined (Missing use command?)." % name) v = o.getvalue(part) f = o.getformat() return (f % v) |