svn commit: r346566 - in head/emulators/open-vm-tools: . files

Xin LI delphij at FreeBSD.org
Fri Feb 28 18:57:02 UTC 2014


Author: delphij
Date: Fri Feb 28 18:57:01 2014
New Revision: 346566
URL: http://svnweb.freebsd.org/changeset/ports/346566
QAT: https://qat.redports.org/buildarchive/r346566/

Log:
  Trap SIGBUS while doing port probe.  On FreeBSD a SIGBUS is delivered
  when accessing port that is not accessible, which is the case when
  running vmware-vmcheck on bare metal system.
  
  Approved by:	swills (maintainer)
  Obtained from:	FreeNAS

Added:
  head/emulators/open-vm-tools/files/patch-lib__vmCheck__vmcheck.c   (contents, props changed)
Modified:
  head/emulators/open-vm-tools/Makefile

Modified: head/emulators/open-vm-tools/Makefile
==============================================================================
--- head/emulators/open-vm-tools/Makefile	Fri Feb 28 18:46:58 2014	(r346565)
+++ head/emulators/open-vm-tools/Makefile	Fri Feb 28 18:57:01 2014	(r346566)
@@ -3,7 +3,7 @@
 
 PORTNAME=		open-vm-tools
 PORTVERSION=		${BUILD_VER}
-PORTREVISION=		3
+PORTREVISION=		4
 PORTEPOCH=		1
 CATEGORIES=		emulators
 MASTER_SITES=		SF/${PORTNAME}/${PORTNAME}/stable-9.4.x

Added: head/emulators/open-vm-tools/files/patch-lib__vmCheck__vmcheck.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/open-vm-tools/files/patch-lib__vmCheck__vmcheck.c	Fri Feb 28 18:57:01 2014	(r346566)
@@ -0,0 +1,10 @@
+--- lib/vmCheck/vmcheck.c.orig	2013-09-23 08:51:10.000000000 -0700
++++ lib/vmCheck/vmcheck.c	2014-01-27 20:58:46.000000000 -0800
+@@ -134,6 +134,7 @@
+ #else
+    do {
+       int signals[] = {
++         SIGBUS,
+          SIGILL,
+          SIGSEGV,
+       };


More information about the svn-ports-all mailing list