Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Feb 2014 18:57:02 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r346566 - in head/emulators/open-vm-tools: . files
Message-ID:  <201402281857.s1SIv2DU031067@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,
+       };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402281857.s1SIv2DU031067>