Config: changes to a couple of error msgs
This commit is contained in:
parent
d6da3ff317
commit
78a72d6972
2 changed files with 3 additions and 3 deletions
|
@ -58,9 +58,9 @@ class SysConfig:
|
||||||
elif buildEnv['TARGET_ISA'] == 'arm':
|
elif buildEnv['TARGET_ISA'] == 'arm':
|
||||||
return env.get('LINUX_IMAGE', disk('linux-arm-ael.img'))
|
return env.get('LINUX_IMAGE', disk('linux-arm-ael.img'))
|
||||||
else:
|
else:
|
||||||
print "Don't know what default disk image to use for ISA %s" % \
|
print "Don't know what default disk image to use for %s ISA" % \
|
||||||
buildEnv['TARGET_ISA']
|
buildEnv['TARGET_ISA']
|
||||||
sys.exit(1)
|
exit(1)
|
||||||
|
|
||||||
# Benchmarks are defined as a key in a dict which is a list of SysConfigs
|
# Benchmarks are defined as a key in a dict which is a list of SysConfigs
|
||||||
# The first defined machine is the test system, the others are driving systems
|
# The first defined machine is the test system, the others are driving systems
|
||||||
|
|
|
@ -107,7 +107,7 @@ elif buildEnv['TARGET_ISA'] == "arm":
|
||||||
bare_metal=options.bare_metal)
|
bare_metal=options.bare_metal)
|
||||||
Simulation.setWorkCountOptions(test_sys, options)
|
Simulation.setWorkCountOptions(test_sys, options)
|
||||||
else:
|
else:
|
||||||
fatal("incapable of building non-alpha or non-sparc full system!")
|
fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
|
||||||
|
|
||||||
if options.kernel is not None:
|
if options.kernel is not None:
|
||||||
test_sys.kernel = binary(options.kernel)
|
test_sys.kernel = binary(options.kernel)
|
||||||
|
|
Loading…
Reference in a new issue