diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-06-12 00:45:11 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-06-12 00:45:11 -0400 |
commit | f6a97752b04b14b7b7a37d29babc3030b3ec9ac4 (patch) | |
tree | d6e17256c77008d165e2dac1258692c7cc790ef1 | |
parent | 633c585bfadb71ba5a91a91b58772ef551d14efd (diff) | |
download | gem5-f6a97752b04b14b7b7a37d29babc3030b3ec9ac4.tar.xz |
X86: Make the amount of system memory match the hardcoded e820 info.
-rw-r--r-- | configs/common/FSConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index e120814d3..9a600f079 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -168,7 +168,7 @@ def makeLinuxX86System(mem_mode, mdesc = None): # Physical memory self.membus = Bus(bus_id=1) - self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem())) + self.physmem = PhysicalMemory(range = AddrRange('4GB')) #range = AddrRange(mdesc.mem())) self.physmem.port = self.membus.port # North Bridge |