Displaying 7 results from an estimated 7 matches for "guest_srcs".
Did you mean:
guest_arch
2006 Jul 28
1
Re: [Xen-changelog] [xen-unstable] [IA64] Creates tools/libxc/ia64 directory.
On Fri, 2006-07-28 at 16:20 +0000, Xen patchbot-unstable wrote:
> diff -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...
2008 Jan 25
0
[PATCH] libxc/makefiles - Use VPATH
...of symlinks for libelf inclusion into libxenctrl.
Signed-off-by: Bastian Blank <waldi@debian.org>
diff -r 31adb5c972d0 -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 = ../....
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...ting ELF machinery, so there's not a lot of new code.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
diff -r 3af164753238 tools/libxc/Makefile
--- a/tools/libxc/Makefile Thu Jun 14 08:15:19 2007 -0700
+++ b/tools/libxc/Makefile Thu Jun 14 08:43:44 2007 -0700
@@ -47,6 +47,7 @@ GUEST_SRCS-y += $(LIBELF_SRCS)
# new domain builder
GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c
GUEST_SRCS-y += xc_dom_elfloader.c
+GUEST_SRCS-y += xc_dom_bzimageloader.c
GUEST_SRCS-y += xc_dom_binloader.c
GUEST_SRCS-y += xc_dom_compat_linux.c
diff -r 3af164753238 tools/libxc/bootparam.h
--- /dev/null...
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...ting ELF machinery, so there's not a lot of new code.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
diff -r 3af164753238 tools/libxc/Makefile
--- a/tools/libxc/Makefile Thu Jun 14 08:15:19 2007 -0700
+++ b/tools/libxc/Makefile Thu Jun 14 08:43:44 2007 -0700
@@ -47,6 +47,7 @@ GUEST_SRCS-y += $(LIBELF_SRCS)
# new domain builder
GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c
GUEST_SRCS-y += xc_dom_elfloader.c
+GUEST_SRCS-y += xc_dom_bzimageloader.c
GUEST_SRCS-y += xc_dom_binloader.c
GUEST_SRCS-y += xc_dom_compat_linux.c
diff -r 3af164753238 tools/libxc/bootparam.h
--- /dev/null...
2007 Jun 15
1
[PATCH RFC] add domain builder support for bzImage kernels
...ting ELF machinery, so there's not a lot of new code.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
diff -r 3af164753238 tools/libxc/Makefile
--- a/tools/libxc/Makefile Thu Jun 14 08:15:19 2007 -0700
+++ b/tools/libxc/Makefile Thu Jun 14 08:43:44 2007 -0700
@@ -47,6 +47,7 @@ GUEST_SRCS-y += $(LIBELF_SRCS)
# new domain builder
GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c
GUEST_SRCS-y += xc_dom_elfloader.c
+GUEST_SRCS-y += xc_dom_bzimageloader.c
GUEST_SRCS-y += xc_dom_binloader.c
GUEST_SRCS-y += xc_dom_compat_linux.c
diff -r 3af164753238 tools/libxc/bootparam.h
--- /dev/null...
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
...n
CLIENT_INSTALL_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...
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow
suit.
1: xen: add LZ4 decompression support
2: libxc: add LZ4 decompression support
Signed-off-by: Jan Beulich <jbeulich@suse.com>