Andreas Sandberg has uploaded this change for review. (
https://gem5-review.googlesource.com/4380
Change subject: configs, arm: Fix incorrect use of mem_range in bL example
......................................................................
configs, arm: Fix incorrect use of mem_range in bL example
The change "config: Change mem_range attribute naming in ARM
SimpleSystem" modified the SimpleSystem class to be compatible with
the MemConfig utility script. While doing so, the way we report the
memory ranges supported by the system changed, which broke the bL
example configration. This changeset introduces the necessary changes
to make the script work again.
Change-Id: I789987950ff04b6c5ae1c8b807355bcba34f6b3c
Signed-off-by: Andreas Sandberg <[email protected]>
---
M configs/example/arm/fs_bigLITTLE.py
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/example/arm/fs_bigLITTLE.py
b/configs/example/arm/fs_bigLITTLE.py
index a6110b5..489bc53 100644
--- a/configs/example/arm/fs_bigLITTLE.py
+++ b/configs/example/arm/fs_bigLITTLE.py
@@ -117,8 +117,8 @@
kernel=SysPaths.binary(kernel),
readfile=bootscript)
- sys.mem_ctrls = SimpleMemory(range=sys._mem_range)
- sys.mem_ctrls.port = sys.membus.master
+ sys.mem_ctrls = [ SimpleMemory(range=r, port=sys.membus.master)
+ for r in sys.mem_ranges ]
sys.connect()
--
To view, visit https://gem5-review.googlesource.com/4380
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I789987950ff04b6c5ae1c8b807355bcba34f6b3c
Gerrit-Change-Number: 4380
Gerrit-PatchSet: 1
Gerrit-Owner: Andreas Sandberg <[email protected]>
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev