Displaying 6 results from an estimated 6 matches for "lvhd".
Did you mean:
lvd
2010 Apr 16
1
Trying to compile/pack the Xen 4 for Debian fail...
..._ -MMD -MF .vhd-util.d
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-D_LARGEFILE64_SOURCE -mno-tls-direct-seg-refs -Werror -Wno-unused
-I../include -D_GNU_SOURCE -Wp,-MD,.vhd-util.d -o vhd-util vhd-util.o
-L../../tools/libxc -lxenctrl -L../../tools/libxc -lxenctrl -Llib
-lvhd -luuid
/usr/bin/ld: cannot find -lxenctrl
collect2: ld returned 1 exit status
make[5]: *** [vhd-util] Error 1
make[5]: Leaving directory
`/home/administrativo/xen/xen-4/xen-4.0.0/debian/build/build-tools/tools/blktap2/vhd'
make[4]: *** [subdir-all-vhd] Error 2
make[4]: Leaving directory
`/home/...
2011 Mar 16
3
[PATCH] tools: do not link against unused libraries
...ue Mar 15 16:33:59 2011 +0000
+++ b/tools/blktap2/drivers/Makefile Wed Mar 16 10:38:52 2011 +0000
@@ -23,11 +23,7 @@ CFLAGS += -fPIC
CFLAGS += -fPIC
endif
-LIBS += -lrt -lz
-
-LBLIBS_img := $(LDLIBS_libxenctrl) $(CRYPT_LIB) -lpthread -lz -lm
-
-LIBS += -L$(LIBVHDDIR) -lvhd
+VHDLIBS := -L$(LIBVHDDIR) -lvhd
REMUS-OBJS := block-remus.o
REMUS-OBJS += hashtable.o
@@ -88,26 +84,26 @@ all: $(IBIN) lock-util qcow-util
all: $(IBIN) lock-util qcow-util
-tapdisk2: $(TAP-OBJS-y) $(BLK-OBJS-y) $(MISC-OBJS-y) tapdisk2.c
- $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $...
2009 May 28
1
[PATCH] blktap2: fix makefile of vhd for parallel make
blktap2: fix makefile of vhd for parallel make
With parallel make, libvhd might not be created before
link resulting in link error. This patch guarantees it.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
diff --git a/tools/blktap2/vhd/Makefile b/tools/blktap2/vhd/Makefile
--- a/tools/blktap2/vhd/Makefile
+++ b/tools/blktap2/vhd/Makefile
@@ -12,6 +12,9 @@ CFLAGS +=
2012 Sep 11
1
Bug#687319: xcp-storage-managers: CDROM VDIs don't hotplug in guests because ISO SRs are misconfigured
...file | 4 +++-
- 1 files changed, 3 insertions(+), 1 deletions(-)
+ Makefile | 12 +++++++-----
+ 1 file changed, 7 insertions(+), 5 deletions(-)
+diff --git a/Makefile b/Makefile
+index fbfbbf5..4255016 100644
--- a/Makefile
+++ b/Makefile
-@@ -12,6 +12,8 @@
+@@ -12,6 +12,8 @@ SM_DRIVERS += LVHDoISCSI
SM_DRIVERS += LVHDoHBA
SM_DRIVERS += SHM
@@ -22,7 +24,7 @@
SM_LIBS := SR
SM_LIBS += SRCommand
SM_LIBS += VDI
-@@ -93,13 +95,13 @@
+@@ -93,13 +95,13 @@ install:
for i in $(SM_XML); do \
install -m 755 drivers/$$i.xml \
$(SM_STAGING)$(SM_DEST); done
@@ -41,3 +43,4 @@...
2013 Apr 19
8
[PATCH 0 of 8] blktap3/libvhd: Introduce VHD library.
This patch series introduces the VHD library. It is based on the blktap2 one,
with changes coming from the blktap2.5 one.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with
updates coming from blktap2.5.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>