Chameleon

Chameleon Commit Details

Date:2011-09-19 20:40:34 (12 years 7 months ago)
Author:blackosx
Commit:1535
Parents: 1534
Message:include Install dir in buildpkg.sh
Changes:
M/branches/blackosx/package/buildpkg.sh
M/branches/blackosx/package/Scripts/Install/CheckFatType.sh

File differences

branches/blackosx/package/Scripts/Install/CheckFatType.sh
2323
2424
2525
26
26
2727
2828
2929
fi
partitionBootSector=$( dd 2>/dev/null if="$targetDeviceRaw" count=1 | perl -ne '@a=split"";for(@a){printf"%02x",ord}' )
partitionBootSector=$( dd 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 "-----------------------------------------------"
branches/blackosx/package/buildpkg.sh
8787
8888
8989
90
9091
9192
9293
......
9798
9899
99100
101
100102
101103
102104
mkdir -p ${1}/Standard/Root
mkdir -p ${1}/Standard/Scripts/Tools
cp -f ${pkgroot}/Scripts/Standard/* ${1}/Standard/Scripts
cp -f ${pkgroot}/Scripts/Install/* ${1}/Standard/Scripts
ditto --arch i386 `which SetFile` ${1}/Standard/Scripts/Tools/SetFile
ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Standard/Scripts/Tools
echo "[BUILD] Standard "
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
ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Tools/SetFile
ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Standard/Scripts/Tools
echo "[BUILD] EFI "

Archive Download the corresponding diff file

Revision: 1535