aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-06-30 21:36:54 +0100
committerMichael Brown <mcb30@etherboot.org>2007-06-30 21:36:54 +0100
commite1646b40809b7e27aa275d7a62eb9a8dd814b1c3 (patch)
tree0b83c85411644f3fe8636a33d8d731a5dc0fdfc9 /src
parent4472e22b5e8fee18f592b68250d47732d728de7b (diff)
downloadipxe-e1646b40809b7e27aa275d7a62eb9a8dd814b1c3.zip
ipxe-e1646b40809b7e27aa275d7a62eb9a8dd814b1c3.tar.gz
ipxe-e1646b40809b7e27aa275d7a62eb9a8dd814b1c3.tar.bz2
Place the actual version string in .data16, rather than just the
pointer to it.
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/image/multiboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/image/multiboot.c b/src/arch/i386/image/multiboot.c
index a198ef7..a59927c 100644
--- a/src/arch/i386/image/multiboot.c
+++ b/src/arch/i386/image/multiboot.c
@@ -199,7 +199,7 @@ static struct multiboot_info __data16 ( mbinfo );
#define mbinfo __use_data16 ( mbinfo )
/** The multiboot bootloader name */
-static const char * __data16 ( mb_bootloader_name ) = "gPXE " VERSION;
+static char __data16_array ( mb_bootloader_name, [] ) = "gPXE " VERSION;
#define mb_bootloader_name __use_data16 ( mb_bootloader_name )
/** The multiboot memory map */