From: Kevin O'Connor Date: Thu, 24 Dec 2009 16:09:30 +0000 (-0500) Subject: Also report memory over 4G during init. X-Git-Tag: rel-0.5.1~28 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=979862ed4a922f64518d1838110ff030701c8406;p=seabios.git Also report memory over 4G during init. --- diff --git a/src/post.c b/src/post.c index 42a27bc..6964f38 100644 --- a/src/post.c +++ b/src/post.c @@ -136,7 +136,8 @@ ram_probe(void) // other page for EPT real mode pagetable add_e820(0xfffbc000, 4*4096, E820_RESERVED); - dprintf(1, "Ram Size=0x%08x\n", RamSize); + dprintf(1, "Ram Size=0x%08x (0x%08x%08x high)\n" + , RamSize, (u32)(RamSizeOver4G >> 32), (u32)RamSizeOver4G); } static void