diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2013-02-15 18:48:59 -0500 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2013-02-15 18:48:59 -0500 |
commit | 21aa950318c3f754797e1aab3533f749559e7e87 (patch) | |
tree | 8770eaa7513750c0fd617479e95b3acf43583f76 /configs/example | |
parent | f7107fb7954b45547ab792493e86760cf6fe33ed (diff) | |
download | gem5-21aa950318c3f754797e1aab3533f749559e7e87.tar.xz |
options: add command line option for dtb file
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/fs.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index b938cb96c..73b0acbfb 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -101,9 +101,8 @@ elif buildEnv['TARGET_ISA'] == "sparc": elif buildEnv['TARGET_ISA'] == "x86": test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0]) elif buildEnv['TARGET_ISA'] == "arm": - test_sys = makeArmSystem(test_mem_mode, - options.machine_type, bm[0], - bare_metal=options.bare_metal) + test_sys = makeArmSystem(test_mem_mode, options.machine_type, bm[0], + options.dtb_filename, bare_metal=options.bare_metal) else: fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA']) |