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:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user