Displaying 1 result from an estimated 1 matches for "ef4fe9970b03".
2006 Feb 25
1
[PATCH] fix mkelf32 when cross compiling on i386 for x86-64
...ommand
line. Whe cross compiling on i386 for x86-64 unsigned long is 32 bit,
which leads to final_exec_addr being truncated to 32 bits by strtoul,
which leads to grub refusing to load the resulting image. Please
apply.
Signed-Off-By: Muli Ben-Yehuda <mulix@mulix.org>
diff -r 86eba2e17a39 -r ef4fe9970b03 xen/arch/x86/boot/mkelf32.c
--- a/xen/arch/x86/boot/mkelf32.c Sat Feb 25 18:36:23 2006 +0200
+++ b/xen/arch/x86/boot/mkelf32.c Sat Feb 25 19:07:43 2006 +0200
@@ -245,7 +245,7 @@ int main(int argc, char **argv)
inimage = argv[1];
outimage = argv[2];
loadbase = strtoul(argv[3], NULL,...