summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGiacomo Travaglini <giacomo.travaglini@arm.com>2019-10-16 13:08:28 +0100
committerGiacomo Travaglini <giacomo.travaglini@arm.com>2019-10-22 10:24:54 +0000
commit62a70fc3cc20890bd98068f29a8d2a9e33caa7df (patch)
treeaf1774f6db04e6cd463aae384309a53420b58719 /tests
parent8e36db16ce5915afdeac5b21e47b505385a5916b (diff)
downloadgem5-62a70fc3cc20890bd98068f29a8d2a9e33caa7df.tar.xz
configs: Do not assume bootmem is a System child
As far as I can see bootmem is used in Arm systems only. With https://gem5-review.googlesource.com/c/public/gem5/+/21604 bootmem has been moved from system to system.realview. This patch fix things by removing the assumption that the bootmem SimObject lives under the system. It is now trying to getattr a reference of the bootmem. It is the ISA specific system builder's duty to bind the bootmem reference (_bootmem) to the real bootmem object Change-Id: I1e7405b5cb186de13c44bfd93fb4c8a1a5447f24 Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22001 Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/configs/base_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/configs/base_config.py b/tests/configs/base_config.py
index 2bed5f661..d79496d7c 100644
--- a/tests/configs/base_config.py
+++ b/tests/configs/base_config.py
@@ -170,7 +170,7 @@ class BaseSystem(object):
options.num_cpus = self.num_cpus
options.num_dirs = 2
- bootmem = getattr(system, 'bootmem', None)
+ bootmem = getattr(system, '_bootmem', None)
Ruby.create_system(options, True, system, system.iobus,
system._dma_ports, bootmem)