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
This commit is contained in:
Ronald G. Minnich 2003-06-24 03:39:34 +00:00
parent 7254a89c88
commit c55613345e
1 changed files with 2 additions and 2 deletions

View File

@ -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)