[PC-BSD Commits] r13463 - in pcbsd/current: build-files/src-patches src-qt4/pc-sysinstaller
svn at pcbsd.org
svn at pcbsd.org
Thu Oct 20 18:40:08 PDT 2011
Author: kris
Date: 2011-10-20 18:40:08 -0700 (Thu, 20 Oct 2011)
New Revision: 13463
Added:
pcbsd/current/build-files/src-patches/patch-gpt-bootcamp
pcbsd/current/build-files/src-patches/patch-pc-sysinstall-bootcamp
Removed:
pcbsd/current/build-files/src-patches/patch-pc-sysinstall-mac-mbr
Modified:
pcbsd/current/src-qt4/pc-sysinstaller/sys-diskwidget.cpp
Log:
Welcome the initial patches for OSX bootcamp support!!!
This should let you select the ada0p3 hybrid MBR/GPT partition, and do an installation to it.
Modified: pcbsd/current/src-qt4/pc-sysinstaller/sys-diskwidget.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-sysinstaller/sys-diskwidget.cpp 2011-10-21 01:13:06 UTC (rev 13462)
+++ pcbsd/current/src-qt4/pc-sysinstaller/sys-diskwidget.cpp 2011-10-21 01:40:08 UTC (rev 13463)
@@ -214,12 +214,14 @@
disk = sysDisks.at(i).at(1);
// Make sure this isn't a GPT slice / partition
+ /* Disable for now since patch is in pc-sysinstall to do bootcamp installations on ada0p3
if ( disk+"s1" != slice && disk+"s2" != slice && disk+"s3" != slice && disk+"s4" != slice ) {
QMessageBox::critical(this, tr("PC-BSD Installer Error"),
tr("Can only install directly to a MBR partition!\nPlease use 'entire disk' or delete all partitions and create a new one."),
QMessageBox::Ok);
return false;
}
+ */
for (int i=0; i < sysDisks.count(); ++i) {
// Make sure to only add the slices to the listDiskSlices
More information about the Commits
mailing list