[Glibc-bsd-commits] r5237 - trunk/kfreebsd-11/debian/patches
rmh at alioth.debian.org
rmh at alioth.debian.org
Tue Dec 17 21:23:32 UTC 2013
Author: rmh
Date: 2013-12-17 21:23:32 +0000 (Tue, 17 Dec 2013)
New Revision: 5237
Added:
trunk/kfreebsd-11/debian/patches/vxge_no_ctf.diff
Modified:
trunk/kfreebsd-11/debian/patches/series
Log:
Fix CTF-induced breakage
Modified: trunk/kfreebsd-11/debian/patches/series
===================================================================
--- trunk/kfreebsd-11/debian/patches/series 2013-12-16 10:59:34 UTC (rev 5236)
+++ trunk/kfreebsd-11/debian/patches/series 2013-12-17 21:23:32 UTC (rev 5237)
@@ -14,6 +14,7 @@
109_linprocfs_non_x86.diff
# Patches that are likely to be Debian-specific
+vxge_no_ctf.diff
902_version.diff
904_dev_full.diff
906_grow_sysv_ipc_limits.diff
Added: trunk/kfreebsd-11/debian/patches/vxge_no_ctf.diff
===================================================================
--- trunk/kfreebsd-11/debian/patches/vxge_no_ctf.diff (rev 0)
+++ trunk/kfreebsd-11/debian/patches/vxge_no_ctf.diff 2013-12-17 21:23:32 UTC (rev 5237)
@@ -0,0 +1,27 @@
+
+vxge is too large for CTF to work correctly. Upstream solved this by
+ignoring the problem in ctfutils. Fixing it here is a bit quicker
+(remove this patch when updating ctfutils!).
+
+--- a/sys/modules/Makefile
++++ b/sys/modules/Makefile
+@@ -546,7 +546,9 @@
+ _stg= stg
+ _streams= streams
+ _svr4= svr4
++.if ${MK_CTF} == "no"
+ _vxge= vxge
++.endif
+ _wbwd= wbwd
+ _wi= wi
+ _xe= xe
+@@ -763,7 +765,9 @@
+ _viawd= viawd
+ _virtio= virtio
+ _vmm= vmm
++.if ${MK_CTF} == "no"
+ _vxge= vxge
++.endif
+ _x86bios= x86bios
+ _wbwd= wbwd
+ _wi= wi
More information about the Glibc-bsd-commits
mailing list