Index: branches/blackosx/package/Scripts/Standard/postinstall =================================================================== --- branches/blackosx/package/Scripts/Standard/postinstall (revision 1558) +++ branches/blackosx/package/Scripts/Standard/postinstall (revision 1559) @@ -33,7 +33,7 @@ # Initialise Script Globals stage0Loader="boot0" -stage0LoaderDualBoot="boot0hfs" +stage0LoaderDualBoot="boot0md" stage1LoaderHFS="boot1h" stage1LoaderFAT="boot1f32" stage2Loader="boot" Index: branches/blackosx/package/Scripts/EFI/postinstall =================================================================== --- branches/blackosx/package/Scripts/EFI/postinstall (revision 1558) +++ branches/blackosx/package/Scripts/EFI/postinstall (revision 1559) @@ -31,7 +31,7 @@ # Initialise Script Globals stage0Loader="boot0" -stage0LoaderDualBoot="boot0hfs" +stage0LoaderDualBoot="boot0md" stage1LoaderHFS="boot1h" stage1LoaderFAT="boot1f32" stage2Loader="boot" Index: branches/blackosx/package/Scripts/Install/WriteChameleonStage0.sh =================================================================== --- branches/blackosx/package/Scripts/Install/WriteChameleonStage0.sh (revision 1558) +++ branches/blackosx/package/Scripts/Install/WriteChameleonStage0.sh (revision 1559) @@ -7,8 +7,8 @@ # Writes Chameleon stage 0 loader. # Receives disksignature: 0 = Windows not found, 1 = Windows Found -# Receives stage0Loader: Name of file - boot0 -# Receives stage0Loaderdualboot: Name of file - boot0hfs +# Receives stage0Loader: for example, boot0 +# Receives stage0Loaderdualboot: for example, boot0md # Receives targetDisk: for example, /dev/disk3 # Receives targetVolume: for example, /Volumes/USB # Receives scriptDir: The location of the main script dir. @@ -38,13 +38,13 @@ echo "Executing command: fdisk440 -u -f /usr/standalone/i386/${stage0Loader} -y ${targetDisk}" "${scriptDir}"/Tools/fdisk440 -u -f "${targetVolume}"/usr/standalone/i386/${stage0Loader} -y ${targetDisk} - "$scriptDir"InstallLog.sh "${targetVolume}" "Written boot0 to ${targetDisk}." + "$scriptDir"InstallLog.sh "${targetVolume}" "Written ${stage0Loader to ${targetDisk}." else - # Windows is also installed on the HDD so we need to write boot0hfs + # Windows is also installed on the HDD so we need to write boot0md echo "Executing command: /fdisk440 -u -f /usr/standalone/i386/${stage0Loaderdualboot} -y ${targetDisk}" "${scriptDir}"/Tools/fdisk440 -u -f "${targetVolume}"/usr/standalone/i386/${stage0Loaderdualboot} -y ${targetDisk} - "$scriptDir"InstallLog.sh "${targetVolume}" "Written boot0hfs to ${targetDisk}." + "$scriptDir"InstallLog.sh "${targetVolume}" "Written ${stage0Loaderdualboot} to ${targetDisk}." fi Index: branches/blackosx/package/Scripts/Install/CheckDiskMicrocode.sh =================================================================== --- branches/blackosx/package/Scripts/Install/CheckDiskMicrocode.sh (revision 1558) +++ branches/blackosx/package/Scripts/Install/CheckDiskMicrocode.sh (revision 1559) @@ -49,8 +49,8 @@ # Check bytes 440-443 of the GPTdiskProtectiveMBR for a Windows Disk Signature windowsloader=$( dd 2>/dev/null if="$targetDisk" count=4 bs=1 | xxd | awk '{print $2$3}' ) if [ "${windowsloader}" == "33c08ed0" ] ; then - echo "Found existing Windows Boot Loader so will replace with Chameleon Boot0hfs" - "$scriptDir"InstallLog.sh "${targetVolume}" "Found existing Windows boot loader - Will replace with boot0hfs" + echo "Found existing Windows Boot Loader so will replace with Chameleon boot0md" + "$scriptDir"InstallLog.sh "${targetVolume}" "Found existing Windows boot loader - Will replace with boot0md" fi # See if a Chameleon stage0 boot file already exists @@ -79,8 +79,8 @@ # Script CheckDiskSignature.sh returned 1 if a Windows installation was found if [ "$diskSigCheck" = "1" ]; then - echo "Found existing Windows installation so will replace stage 0 loader with Boot0hfs" - "$scriptDir"InstallLog.sh "${targetVolume}" "As Windows is installed - Replace boot0 with boot0hfs" + echo "Found existing Windows installation so will replace stage 0 loader with boot0md" + "$scriptDir"InstallLog.sh "${targetVolume}" "As Windows is installed - Replace boot0 with boot0md" exit 0 fi fi