Index: trunk/i386/util/sectorsize.c =================================================================== --- trunk/i386/util/sectorsize.c (revision 2656) +++ trunk/i386/util/sectorsize.c (revision 2657) @@ -119,7 +119,7 @@ if (ioctl(diskdevice, DKIOCGETPHYSICALBLOCKSIZE, &size) != -1) { printf("Physical %u", size); - } else if (!ioctl(diskdevice, DKIOCGETBLOCKSIZE, &size) != -1) { + } else if (ioctl(diskdevice, DKIOCGETBLOCKSIZE, &size) != -1) { printf("Locical %u\n", size); } else { printf("Standard 512"); Index: trunk/package/Scripts/Main/SkipStage0 =================================================================== --- trunk/package/Scripts/Main/SkipStage0 (revision 0) +++ trunk/package/Scripts/Main/SkipStage0 (revision 2657) @@ -0,0 +1,8 @@ +#!/bin/bash + +configFile="/private/tmp/InstallConfig.plist" + +# adding option to declare that we are installing the bootloader w/o writing the Stage0 +/usr/libexec/PlistBuddy -c "Add :SkipStage0 bool true" ${configFile} + +exit 0 \ No newline at end of file Property changes on: trunk/package/Scripts/Main/SkipStage0 ___________________________________________________________________ Added: svn:executable + * Index: trunk/package/Scripts/Main/SkipStage1 =================================================================== --- trunk/package/Scripts/Main/SkipStage1 (revision 0) +++ trunk/package/Scripts/Main/SkipStage1 (revision 2657) @@ -0,0 +1,8 @@ +#!/bin/bash + +configFile="/private/tmp/InstallConfig.plist" + +# adding option to declare that we are installing the bootloader w/o writing the Stage1 +/usr/libexec/PlistBuddy -c "Add :SkipStage1 bool true" ${configFile} + +exit 0 \ No newline at end of file Property changes on: trunk/package/Scripts/Main/SkipStage1 ___________________________________________________________________ Added: svn:executable + * Index: trunk/package/Scripts/Main/SkipActivePartition =================================================================== --- trunk/package/Scripts/Main/SkipActivePartition (revision 0) +++ trunk/package/Scripts/Main/SkipActivePartition (revision 2657) @@ -0,0 +1,8 @@ +#!/bin/bash + +configFile="/private/tmp/InstallConfig.plist" + +# adding option to declare that we are installing the bootloader w/o activate the partition +/usr/libexec/PlistBuddy -c "Add :SkipActivePartition bool true" ${configFile} + +exit 0 \ No newline at end of file Property changes on: trunk/package/Scripts/Main/SkipActivePartition ___________________________________________________________________ Added: svn:executable + *