Index: branches/blackosx/package/Scripts/Install/CheckFatType.sh =================================================================== --- branches/blackosx/package/Scripts/Install/CheckFatType.sh (revision 1535) +++ branches/blackosx/package/Scripts/Install/CheckFatType.sh (revision 1536) @@ -23,7 +23,7 @@ fi -partitionBootSector=$( dd if="$targetDeviceRaw" count=1 | perl -ne '@a=split"";for(@a){printf"%02x",ord}' ) +partitionBootSector=$( dd 2>/dev/null if="$targetDeviceRaw" count=1 | perl -ne '@a=split"";for(@a){printf"%02x",ord}' ) if [ "${partitionBootSector:36:2}" == "00" ] && [ "${partitionBootSector:42:2}" == "f8" ] && [ "${partitionBootSector:48:2}" == "3f" ]; then echo "Found a FAT32 device formatted by Windows Explorer" echo "-----------------------------------------------" Index: branches/blackosx/package/buildpkg.sh =================================================================== --- branches/blackosx/package/buildpkg.sh (revision 1535) +++ branches/blackosx/package/buildpkg.sh (revision 1536) @@ -98,7 +98,7 @@ mkdir -p ${1}/EFI/Root mkdir -p ${1}/EFI/Scripts/Tools cp -f ${pkgroot}/Scripts/EFI/* ${1}/EFI/Scripts - cp -f ${pkgroot}/Scripts/Install/* ${1}/Standard/Scripts + cp -f ${pkgroot}/Scripts/Install/* ${1}/EFI/Scripts ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Tools/SetFile ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Standard/Scripts/Tools echo " [BUILD] EFI "