Skip to content

Commit

Permalink
add patch from upstream to fix a regression which made that the symbol
Browse files Browse the repository at this point in the history
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
  • Loading branch information
drochner committed Nov 29, 2013
1 parent fe7d55d commit 22e4a8a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions sysutils/xentools41/Makefile
Original file line number Diff line number Diff line change
@@ -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}/

Expand Down
5 changes: 2 additions & 3 deletions sysutils/xentools41/distinfo
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
13 changes: 13 additions & 0 deletions sysutils/xentools41/patches/patch-am
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 22e4a8a

Please sign in to comment.