I am trying to install the latest driver - version 1.0.1 (R2) from Intel's website. It states that the driver is supported on Intel-based Macs with Mac OS X 10.6 and later (32/64-bit). But when I try to install it, I get an error stating that my Mac doesn't meet the minimum requirements.
Please note I have a Mid 2010 Macbook (White) which does support Intel VT-x and is enabled. I also had this driver installed and working on my Macbook when it was running Snow Leopard (10.6.x). So, I'm guessing this has something to do with Intel not testing their driver with Mountain Lion :)
Does anybody have any tips on getting this installed or contacting Intel to provide this feedback?
Thanks!
P.S.: wanted to tag this post with "haxm" tag but couldn't. Can someone with higher rep please tag it? TIA!
There seems to be a small bug/error/whatever in the HAXM installer that causes the script which checks the requirements to report a false result. Fix:
/Volumes/IntelHAXM_1.0.1/IntelHAXM_1.0.1.mpkg/Contents/Resources
(Change path if necessary).haxm-req.sh
.The patch:
--- haxm-req.sh.old 2012-10-09 11:26:35.000000000 +0200
+++ haxm-req.sh 2012-10-09 11:27:01.000000000 +0200
@@ -4,7 +4,7 @@
"$fullpath/haxm-check"
result=$?
if ! [ $result -eq 0 ]; then
- TRUE;
+ /usr/bin/true;
else
- FALSE;
+ /usr/bin/false;
fi
To apply the patch, run patch -p0 < haxm-req.patch
if you saved it in the file haxm-req.patch
in the Resources
directory.