]> git.pld-linux.org Git - packages/xen.git/commitdiff
- drop obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 17:31:14 +0000 (17:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    xen-bridge_setup.patch -> 1.2
    xen-xenstore-version.patch -> 1.2

xen-bridge_setup.patch [deleted file]
xen-xenstore-version.patch [deleted file]

diff --git a/xen-bridge_setup.patch b/xen-bridge_setup.patch
deleted file mode 100644 (file)
index 6ce793a..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -dur -x '*~' xen-3.0.2.orig/tools/examples/network-bridge xen-3.0.2/tools/examples/network-bridge
---- xen-3.0.2.orig/tools/examples/network-bridge       2006-06-29 14:58:24.000000000 +0200
-+++ xen-3.0.2/tools/examples/network-bridge    2006-06-29 14:59:49.000000000 +0200
-@@ -61,7 +61,7 @@
- vifnum=${vifnum:-0}
- bridge=${bridge:-xenbr${vifnum}}
--netdev=${netdev:-$(ip route list default scope global| awk '{ print $NF }')}
-+netdev=${netdev:-$(ip route list default scope global | sed -e's/ onlink//' | awk '{ print $NF }')}
- netdev=${netdev:-eth${vifnum}}
- antispoof=${antispoof:-no}
diff --git a/xen-xenstore-version.patch b/xen-xenstore-version.patch
deleted file mode 100644 (file)
index f086ddb..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# HG changeset patch
-# User kfraser@localhost.localdomain
-# Node ID d71e72d8532cfdf5896f560d98d45262841c8b83
-# Parent  7dfc65c380352627c1501fd34bdb1139bee3f3b4
-Add versioning info to xenstore library.
-From: Mark McLoughlin <markmc@redhat.com>
-Signed-off-by: Keir Fraser <keir@xensource.com>
-
-diff -burN xen-3.0.2.orig/tools/xenstore/Makefile xen-3.0.2/tools/xenstore/Makefile
---- xen-3.0.2.orig/tools/xenstore/Makefile     2006-07-26 15:50:33.550208000 +0200
-+++ xen-3.0.2/tools/xenstore/Makefile  2006-07-26 15:54:26.068739500 +0200
-@@ -2,6 +2,9 @@
- include $(XEN_ROOT)/tools/Rules.mk
- XEN_LIBXC          = $(XEN_ROOT)/tools/libxc
-+MAJOR = 3.0
-+MINOR = 0
-+
- INSTALL         = install
- INSTALL_DATA  = $(INSTALL) -m0644
- INSTALL_PROG    = $(INSTALL) -m0755
-@@ -77,11 +80,20 @@
- talloc_test.o: talloc.c
-       $(COMPILE.c) -o $@ $<
--libxenstore.so: xs.opic xs_lib.opic
--      $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname -Wl,libxenstore.so -shared -o $@ $^ -lpthread
-+libxenstore.so: libxenstore.so.$(MAJOR)
-+      ln -sf $< $@
-+
-+libxenstore.so.$(MAJOR): libxenstore.so.$(MAJOR).$(MINOR)
-+      ln -sf $< $@
-+
-+libxenstore.so.$(MAJOR).$(MINOR): xs.opic xs_lib.opic
-+      $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname -Wl,libxenstore.so.$(MAJOR) -shared -o $@ $^ -lpthread
-+
-+libxenstore.a: xs.o xs_lib.o
-+      ar rcs libxenstore.a $^
- clean: testsuite-clean
--      rm -f *.o *.opic *.so
-+      rm -f *.o *.opic *.so*
-       rm -f xenstored xs_random xs_stress xs_crashme
-       rm -f xs_test xenstored_test xs_tdb_dump xenstore-control xenstore-ls
-       rm -f $(CLIENTS)
-@@ -147,7 +159,9 @@
-       $(INSTALL_PROG) xenstore-control $(DESTDIR)/usr/bin
-       $(INSTALL_PROG) xenstore-ls $(DESTDIR)/usr/bin
-       $(INSTALL_DIR) -p $(DESTDIR)/usr/$(LIBDIR)
--      $(INSTALL_DATA) libxenstore.so $(DESTDIR)/usr/$(LIBDIR)
-+      $(INSTALL_DATA) libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR)
-+      ln -sf libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)/usr/$(LIBDIR)/libxenstore.so.$(MAJOR)
-+      ln -sf libxenstore.so.$(MAJOR) $(DESTDIR)/usr/$(LIBDIR)/libxenstore.so
-       $(INSTALL_DATA) xs.h $(DESTDIR)/usr/include
-       $(INSTALL_DATA) xs_lib.h $(DESTDIR)/usr/include
This page took 0.113578 seconds and 4 git commands to generate.