summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@arm.com>2018-09-04 14:11:10 +0100
committerCiro Santilli <ciro.santilli@arm.com>2018-10-08 09:40:36 +0000
commitbb0ab1d464ff875b44cfce57e3c01c7587b02727 (patch)
treec818581fd37faa43a3c764ea7e1ad3cde5f5176a /configs
parent9145d4854321870c02ded3bb8b554ecb236a9e87 (diff)
downloadgem5-bb0ab1d464ff875b44cfce57e3c01c7587b02727.tar.xz
dev, arm: remove the RealViewEB platform
This is an old platform, and we haven't had official Linux kernel configs for it in a while, so we've decided to deprecate it. Furthermore, trying to use it fails with: object 'RealViewEB' has no attribute 'pci_host' and the last commit in the class happened two years ago, which indicates that no one has been using it. Change-Id: Icc674b00b152eb3246e05141dbaf2624cc720f21 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/12471 Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/common/FSConfig.py2
-rw-r--r--configs/common/PlatformConfig.py1
2 files changed, 0 insertions, 3 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py
index aa00efe60..674761634 100644
--- a/configs/common/FSConfig.py
+++ b/configs/common/FSConfig.py
@@ -211,14 +211,12 @@ def makeArmSystem(mem_mode, machine_type, num_cpus=1, mdesc=None,
assert machine_type
default_dtbs = {
- "RealViewEB": None,
"RealViewPBX": None,
"VExpress_EMM": "vexpress.aarch32.ll_20131205.0-gem5.%dcpu.dtb" % num_cpus,
"VExpress_EMM64": "vexpress.aarch64.20140821.dtb",
}
default_kernels = {
- "RealViewEB": "vmlinux.arm.smp.fb.2.6.38.8",
"RealViewPBX": "vmlinux.arm.smp.fb.2.6.38.8",
"VExpress_EMM": "vmlinux.aarch32.ll_20131205.0-gem5",
"VExpress_EMM64": "vmlinux.aarch64.20140821",
diff --git a/configs/common/PlatformConfig.py b/configs/common/PlatformConfig.py
index 34325f315..306b7320d 100644
--- a/configs/common/PlatformConfig.py
+++ b/configs/common/PlatformConfig.py
@@ -52,7 +52,6 @@ _platform_classes = {}
# Platform aliases. The platforms listed here might not be compiled,
# we make sure they exist before we add them to the platform list.
_platform_aliases_all = [
- ("RealView_EB", "RealViewEB"),
("RealView_PBX", "RealViewPBX"),
("VExpress_GEM5", "VExpress_GEM5_V1"),
]