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: | 	else: | ||||||
| 		o = getvalue(options, name) | 		o = getvalue(options, name) | ||||||
| 	if (o == 0 or not o.defined): | 	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) | 	v = o.getvalue(part) | ||||||
| 	if (debug > 2): | 	if (debug > 2): | ||||||
| 		print "getoption returns %s" % v | 		print "getoption returns %s" % v | ||||||
| @@ -447,7 +447,7 @@ def getformated(name, part): | |||||||
| 	else: | 	else: | ||||||
| 		o = getvalue(options, name) | 		o = getvalue(options, name) | ||||||
| 	if (o == 0 or not o.defined): | 	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) | 	v = o.getvalue(part) | ||||||
| 	f = o.getformat() | 	f = o.getformat() | ||||||
| 	return (f % v) | 	return (f % v) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user