From 9be6e082270aad53f8ba40bf66a91fcf176a45ab Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 10 Oct 2008 03:50:42 -0700 Subject: [PATCH] X86: Add a couple comments to the bios SConscript --- src/arch/x86/bios/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/arch/x86/bios/SConscript b/src/arch/x86/bios/SConscript index 904fab086..1ec717b11 100644 --- a/src/arch/x86/bios/SConscript +++ b/src/arch/x86/bios/SConscript @@ -59,7 +59,10 @@ Import('*') if env['TARGET_ISA'] == 'x86': if env['FULL_SYSTEM']: + # The table generated by the bootloader using the BIOS and passed to + # the operating system which maps out physical memory. SimObject('E820.py') Source('e820.cc') + # The DMI tables. Source('smbios.cc')