From: Gabe Black Date: Thu, 12 Jun 2008 04:45:11 +0000 (-0400) Subject: X86: Make the amount of system memory match the hardcoded e820 info. X-Git-Tag: m5_2.0_beta6~170 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6a97752b04b14b7b7a37d29babc3030b3ec9ac4;p=gem5.git X86: Make the amount of system memory match the hardcoded e820 info. --- 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