From 6d2e4e719c346aa519d63099475c0a81b70f758c Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 16 Jul 2007 13:22:12 +0100 Subject: Move uninitialised .data16 variables to .bss16; saves around 2000 bytes of useless zeroes in the final image. --- src/arch/i386/firmware/pcbios/memmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/i386/firmware') diff --git a/src/arch/i386/firmware/pcbios/memmap.c b/src/arch/i386/firmware/pcbios/memmap.c index 7c1f36028..318ba0910 100644 --- a/src/arch/i386/firmware/pcbios/memmap.c +++ b/src/arch/i386/firmware/pcbios/memmap.c @@ -49,7 +49,7 @@ struct e820_entry { #define E820_TYPE_NVS 4 /**< ACPI NVS memory */ /** Buffer for INT 15,e820 calls */ -static struct e820_entry __data16 ( e820buf ); +static struct e820_entry __bss16 ( e820buf ); #define e820buf __use_data16 ( e820buf ) /** -- cgit