summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2013-11-29 19:31:47 +0000
committerdrochner <drochner@pkgsrc.org>2013-11-29 19:31:47 +0000
commit9ca550c0c32a892d425243b304daa73f5436fd9e (patch)
treea7ad069692c1a56a46dd797cdafdfad145f86500 /sysutils
parent0067753b2f68460a832964ffcb5d6da752415edf (diff)
downloadpkgsrc-9ca550c0c32a892d425243b304daa73f5436fd9e.tar.gz
add patch from upstream to fix a regression which made that the symbol
table of NetBSD domU kernels was not loaded correctly, see http://mail-index.netbsd.org/port-xen/2013/11/29/msg008157.html for details bump PKGREV
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/xentools41/Makefile4
-rw-r--r--sysutils/xentools41/distinfo5
-rw-r--r--sysutils/xentools41/patches/patch-am13
3 files changed, 17 insertions, 5 deletions
diff --git a/sysutils/xentools41/Makefile b/sysutils/xentools41/Makefile
index aaaac6ef434..a25ff17291a 100644
--- a/sysutils/xentools41/Makefile
+++ b/sysutils/xentools41/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.39 2013/11/07 00:47:39 joerg Exp $
+# $NetBSD: Makefile,v 1.40 2013/11/29 19:31:47 drochner Exp $
#
# VERSION is set in version.mk as it is shared with other packages
.include "version.mk"
DISTNAME= xen-${VERSION}
PKGNAME= xentools41-${VERSION}
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://bits.xensource.com/oss-xen/release/${VERSION}/
diff --git a/sysutils/xentools41/distinfo b/sysutils/xentools41/distinfo
index 873db7da108..4341a39b21f 100644
--- a/sysutils/xentools41/distinfo
+++ b/sysutils/xentools41/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.33 2013/09/11 18:00:33 drochner Exp $
+$NetBSD: distinfo,v 1.34 2013/11/29 19:31:47 drochner Exp $
SHA1 (ipxe-git-v1.0.0.tar.gz) = da052c8de5f3485fe0253c19cf52ed6d72528485
RMD160 (ipxe-git-v1.0.0.tar.gz) = dcd9b6eaafa1ce05c1ebf2a15f2f73ad7a8c5547
@@ -22,6 +22,7 @@ SHA1 (patch-ai) = 8da6bba38bd7677ea829ca35058f7d2d1d7acad4
SHA1 (patch-aj) = d0999d8dcbc1eef4de7037db0e54dcd8d2f706eb
SHA1 (patch-ak) = 722a6b0541b036d84c703037134e25bc47f3eb65
SHA1 (patch-al) = d9a310c16db708dd86170a13946f87e4cd21eb7a
+SHA1 (patch-am) = b89785a97208454eb3f2e1e43ba4674ad0828aa6
SHA1 (patch-ba) = 2c65e4b4b85e91e92dfb3aa402ebc44694bdff06
SHA1 (patch-bb) = 64a61fb156bcb6a99ff0963063a0716b808e3b61
SHA1 (patch-bc) = 25c99a428fda6dee709888ddbcfdcfef5f654564
@@ -40,9 +41,7 @@ SHA1 (patch-dc) = d860fe3725978227278d58f09e7d5157001e463e
SHA1 (patch-dd) = e66d9cc0028ba922b050fc142862b4095cd018f3
SHA1 (patch-de) = fae94b61a430a1a7dd98c9a6a04e4513824c6d8d
SHA1 (patch-df) = d20bf9d3fd05f5334f77c9154bf0fb9944c1292c
-SHA1 (patch-examples_Makefile) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-firmware_hvmloader_Makefile) = b2914e4988ba004d45403d67f1580b1f9725d006
-SHA1 (patch-hotplug_common_Makefile) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-ioemu-qemu-xen_hw_pass-through.c) = 76185c239078f29cb42b953d6c2cd1f59e240989
SHA1 (patch-ioemu-qemu-xen_hw_pass-through.h) = 98c26798d1ad99d3eee8b33deb08f747c958c886
SHA1 (patch-ioemu-qemu-xen_hw_piix4acpi.c) = ca19457e9bde2d844a86a866960ac6de1f3d084c
diff --git a/sysutils/xentools41/patches/patch-am b/sysutils/xentools41/patches/patch-am
new file mode 100644
index 00000000000..238db793030
--- /dev/null
+++ b/sysutils/xentools41/patches/patch-am
@@ -0,0 +1,13 @@
+$NetBSD: patch-am,v 1.1 2013/11/29 19:31:47 drochner Exp $
+
+--- libxc/xc_dom.h.orig 2013-11-29 18:20:47.000000000 +0000
++++ libxc/xc_dom.h 2013-11-29 18:22:14.000000000 +0000
+@@ -303,7 +303,7 @@ static inline void *xc_dom_vaddr_to_ptr(
+ if ( ptr == NULL )
+ return ptr;
+ *safe_region_out = (safe_region_count << XC_DOM_PAGE_SHIFT(dom)) - offset;
+- return ptr;
++ return ptr + offset;
+ }
+
+ static inline int xc_dom_feature_translated(struct xc_dom_image *dom)