From: Vladimir 'phcoder' Serbinenko Date: Mon, 20 Sep 2010 23:52:25 +0000 (+0200) Subject: * doc/multiboot.texi: New type for badram. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8dd274c31e8958a17611a8c96133373a0b60cf9;p=thirdparty%2Fgrub.git * doc/multiboot.texi: New type for badram. --- diff --git a/ChangeLog b/ChangeLog index da9c9ea1c..4f1f6a0bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-09-20 Vladimir Serbinenko + + * doc/multiboot.texi: New type for badram. + 2010-09-20 Vladimir Serbinenko * doc/multiboot.texi: New tags for EFI system table, DHCP ACK, SMBIOS diff --git a/doc/multiboot.texi b/doc/multiboot.texi index a4482a902..44782c9c3 100644 --- a/doc/multiboot.texi +++ b/doc/multiboot.texi @@ -903,7 +903,7 @@ u32 | reserved | @samp{type} is the variety of address range represented, where a value of 1 indicates available @sc{ram}, value of 3 indicates usable memory holding ACPI information, value of 4 indicates reserved memory which needs to -be preserved on hibernation and all other values currently +be preserved on hibernation, value of 5 indicates a memory which is occupied by defective RAM modules and all other values currently indicated a reserved area. @samp{reserved} is set to @samp{0} by bootloader and must be ignored by the OS image. diff --git a/doc/multiboot2.h b/doc/multiboot2.h index 09a640ffb..0e26a8ec2 100644 --- a/doc/multiboot2.h +++ b/doc/multiboot2.h @@ -173,6 +173,7 @@ struct multiboot_mmap_entry #define MULTIBOOT_MEMORY_RESERVED 2 #define MULTIBOOT_MEMORY_ACPI_RECLAIMABLE 3 #define MULTIBOOT_MEMORY_NVS 4 +#define MULTIBOOT_MEMORY_BADRAM 5 multiboot_uint32_t type; multiboot_uint32_t zero; } __attribute__((packed));