From 72d414a517ed859d768bc1b590ed969c60ef711e Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Sat, 30 Oct 2010 13:55:29 +0000 Subject: [PATCH] * ARM: Start physical allocated range at top of memory; otherwise our page directory/tables won't be included git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39204 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/u-boot/mmu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/platform/u-boot/mmu.cpp b/src/system/boot/platform/u-boot/mmu.cpp index 7c9d76022c..f2a7e9bacf 100644 --- a/src/system/boot/platform/u-boot/mmu.cpp +++ b/src/system/boot/platform/u-boot/mmu.cpp @@ -576,7 +576,7 @@ mmu_init(void) gKernelArgs.physical_memory_range[0].size = highestRAMAddress - SDRAM_BASE; gKernelArgs.num_physical_memory_ranges = 1; - gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress; + gKernelArgs.physical_allocated_range[0].start = SDRAM_BASE; gKernelArgs.physical_allocated_range[0].size = 0; gKernelArgs.num_physical_allocated_ranges = 1; // remember the start of the allocated physical pages