From: Gabe Black Date: Wed, 2 Jun 2010 17:58:04 +0000 (-0500) Subject: ARM: Move the mmap region to where Linux actually has it. X-Git-Tag: stable_2012_02_02~1321 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5aee75efe68c37224eebb0c2f8e1c5fa3ba0d1e;p=gem5.git ARM: Move the mmap region to where Linux actually has it. --- diff --git a/src/arch/arm/process.cc b/src/arch/arm/process.cc index 3c51c80a7..82e0a107f 100644 --- a/src/arch/arm/process.cc +++ b/src/arch/arm/process.cc @@ -57,7 +57,7 @@ ArmLiveProcess::ArmLiveProcess(LiveProcessParams *params, ObjectFile *objFile, brk_point = roundUp(brk_point, VMPageSize); // Set up region for mmaps. For now, start at bottom of kuseg space. - mmap_start = mmap_end = 0x70000000L; + mmap_start = mmap_end = 0x40000000L; } void