summaryrefslogtreecommitdiff
path: root/configs/common/Options.py
diff options
context:
space:
mode:
authorGlenn Bergmans <glenn.bergmans@arm.com>2016-03-14 20:29:12 +0000
committerCurtis Dunham <curtis.dunham@arm.com>2018-01-29 22:22:51 +0000
commitdcab5b577e35f9bf9969ccfd91309455758aaed8 (patch)
tree2ef530467a6d67caa152af3572b309f41146b67e /configs/common/Options.py
parent7c9122b6f2365bae51903f125ccaa9c4b779ea26 (diff)
downloadgem5-dcab5b577e35f9bf9969ccfd91309455758aaed8.tar.xz
config: Embed Device Tree generation in fs.py config
Equips the fs.py config routine with an extra commandline option --generate-dtb that will generate a dtb file automatically before running the simulation. Only works with ARM systems and gives a warning if the simulated system is not of --machine-type VExpress_GEM5_V1. Change-Id: I7766e5459fd9bec2245de83cef103091ebaf7229 Reviewed-by: Curtis Dunham <curtis.dunham@arm.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/5968 Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'configs/common/Options.py')
-rw-r--r--configs/common/Options.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py
index ea7c75bb7..29ef74c9a 100644
--- a/configs/common/Options.py
+++ b/configs/common/Options.py
@@ -343,6 +343,8 @@ def addFSOptions(parser):
parser.add_option("--enable-context-switch-stats-dump", \
action="store_true", help="Enable stats dump at context "\
"switches and dump tasks file (required for Streamline)")
+ parser.add_option("--generate-dtb", action="store_true", default=False,
+ help="Automatically generate a dtb file")
# Benchmark options
parser.add_option("--dual", action="store_true",