Displaying 2 results from an estimated 2 matches for "xc_load_elf".
2006 May 16
7
Unable to bring up Mini-OS on x86_64
I am getting the following error when I try to bring up Mini-OS on x86_64 Xen (unstable: 9994). It is dying in xc_linux_build() causing xend to fault and restart. Any clue why this happening? Has something changed in the builder that Mini-OS needs to be aware of?
PS: I tried reverting changeset 9993 (Allow linking of mini-os with application-specific object code), but still got the same error
2006 Jul 28
1
Re: [Xen-changelog] [xen-unstable] [IA64] Creates tools/libxc/ia64 directory.
...r dc26ac2f7718 -r dab0a5650e6d tools/libxc/Makefile
> --- a/tools/libxc/Makefile Mon Jul 10 14:14:11 2006 -0600
> +++ b/tools/libxc/Makefile Tue Jul 11 11:29:25 2006 -0600
> @@ -30,9 +30,11 @@ GUEST_SRCS-y += xc_load_bin.c
> GUEST_SRCS-y += xc_load_bin.c
> GUEST_SRCS-y += xc_load_elf.c
> GUEST_SRCS-y += xg_private.c
> -GUEST_SRCS-$(CONFIG_IA64) += xc_ia64_stubs.c
> GUEST_SRCS-$(CONFIG_MIGRATE) += xc_linux_restore.c xc_linux_save.c
> GUEST_SRCS-$(CONFIG_HVM) += xc_hvm_build.c
> +
> +# This Makefile only adds files if CONFIG_IA64 is y.
> +include ia64/Make...