Displaying 4 results from an estimated 4 matches for "config_hvm".
Did you mean:
config_hmm
2013 Dec 16
8
XEN/arm XENFB support
Goodmorning,
I''m currently playing with XEN/arm on my Allwinner A20 (cubieboard2)
I would like to get the XENFB driver working on domU.
But currently in xen/arm there''s no support for VFB, atleast qemu is not
supported.
But this video http://www.youtube.com/watch?v=po1IeElg8tg and this one
http://www.youtube.com/watch?v=Km6gBnIqaWo is showing a working framebuffer.
So there are
2006 Jul 28
1
Re: [Xen-changelog] [xen-unstable] [IA64] Creates tools/libxc/ia64 directory.
...@@ -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/Makefile
>
> CFLAGS += -Werror
> CFLAGS += -fno-strict-aliasing
I''m not sure this is the best way. We''ll need to do the same thing for
xc_ppc_linux_build.c, b...
2008 Jan 25
0
[PATCH] libxc/makefiles - Use VPATH
...0 -r 11b2e8baa6bf tools/libxc/Makefile
--- a/tools/libxc/Makefile Thu Jan 24 14:41:26 2008 +0000
+++ b/tools/libxc/Makefile Fri Jan 25 19:16:02 2008 +0100
@@ -31,20 +31,11 @@ GUEST_SRCS-$(CONFIG_MIGRATE) += xc_domai
GUEST_SRCS-$(CONFIG_MIGRATE) += xc_domain_restore.c xc_domain_save.c
GUEST_SRCS-$(CONFIG_HVM) += xc_hvm_build.c
-# symlink libelf from xen/common/libelf/
-LIBELF_SRCS := libelf-tools.c libelf-loader.c
-LIBELF_SRCS += libelf-dominfo.c libelf-relocate.c
+VPATH = ../../xen/common/libelf
+CFLAGS += -I../../xen/common/libelf
-libelf-tools.o: libelf-tools.c libelf-private.h
-libelf-loader.o:...
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
...TALL_DIR = /usr/$(LIBDIR)/xen/bin
-CFLAGS += -Werror -g
+CFLAGS += $(TOOL_CFLAGS) -Werror -g
CFLAGS += -I $(XEN_LIBXC)
CFLAGS += -I $(XEN_XENSTORE)
diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile
--- a/tools/libxc/Makefile
+++ b/tools/libxc/Makefile
@@ -29,6 +29,7 @@ GUEST_SRCS-$(CONFIG_HVM) += xc_hvm_build
-include $(XEN_TARGET_ARCH)/Makefile
+CFLAGS += $(TOOL_CFLAGS)
CFLAGS += -Werror
CFLAGS += -fno-strict-aliasing
CFLAGS += $(INCLUDES) -I.
diff --git a/tools/misc/Makefile b/tools/misc/Makefile
--- a/tools/misc/Makefile
+++ b/tools/misc/Makefile
@@ -1,7 +1,7 @@ XEN_R...