[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix mkelf32 cross compilation support. The previous fix for
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID d75cab09ef57a4444e03c6402214432f84a8cf73 # Parent 42f93cc190b764f506481fcb51fa86ea08488f07 Fix mkelf32 cross compilation support. The previous fix for this was misapplied by me. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> diff -r 42f93cc190b7 -r d75cab09ef57 xen/arch/x86/boot/mkelf32.c --- a/xen/arch/x86/boot/mkelf32.c Mon Mar 6 09:58:50 2006 +++ b/xen/arch/x86/boot/mkelf32.c Mon Mar 6 10:01:43 2006 @@ -244,8 +244,8 @@ inimage = argv[1]; outimage = argv[2]; - loadbase = strtoull(argv[3], NULL, 16); - final_exec_addr = strtoul(argv[4], NULL, 16); + loadbase = strtoul(argv[3], NULL, 16); + final_exec_addr = strtoull(argv[4], NULL, 16); infd = open(inimage, O_RDONLY); if ( infd == -1 ) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |