mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2024-11-23 16:39:17 +01:00
123 lines
4.7 KiB
Bash
Executable File
123 lines
4.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
IPSW32() {
|
|
local BundlePath="resources/firmware/FirmwareBundles"
|
|
local Bundle="Down_${ProductType}_${OSVer}_${BuildVer}.bundle"
|
|
local ExtraArgs
|
|
local JBFiles
|
|
local JBSHA1
|
|
|
|
if [[ $IPSWRestore == $IPSWCustom ]]; then
|
|
Log "Found existing Custom IPSW. Skipping IPSW creation."
|
|
return
|
|
fi
|
|
|
|
if [[ -e $BundlePath/$Bundle/Info.plist.bak ]]; then
|
|
cd $BundlePath/$Bundle
|
|
rm Info.plist
|
|
mv Info.plist.bak Info.plist
|
|
cd ../../../..
|
|
fi
|
|
|
|
if [[ $JBDaibutsu == 1 ]]; then
|
|
ExtraArgs+="-daibutsu "
|
|
echo '#!/bin/bash' > tmp/reboot.sh
|
|
echo "mount_hfs /dev/disk0s1s1 /mnt1; mount_hfs /dev/disk0s1s2 /mnt2" >> tmp/reboot.sh
|
|
echo "nvram -d boot-partition; nvram -d boot-ramdisk" >> tmp/reboot.sh
|
|
echo "/usr/bin/haxx_overwrite -$HWModel" >> tmp/reboot.sh
|
|
JBFiles2=("bin.tar" "cydia.tar" "untether.tar")
|
|
JBSHA1=("98034227c68610f4c7dd48ca9e622314a1e649e7" "2e9e662afe890e50ccf06d05429ca12ce2c0a3a3" "f88ec9a1b3011c4065733249363e9850af5f57c8")
|
|
cd tmp
|
|
for i in {0..2}; do
|
|
local URL="https://github.com/dora2-iOS/daibutsuCFW/raw/main/build/src/"
|
|
(( $i > 0 )) && URL+="daibutsu/${JBFiles2[$i]}" || URL+="${JBFiles2[$i]}"
|
|
if [[ ! -e ../resources/jailbreak/${JBFiles2[$i]} ]]; then
|
|
Log "Downloading ${JBFiles2[$i]}..."
|
|
SaveFile $URL ${JBFiles2[$i]} ${JBSHA1[$i]}
|
|
mv ${JBFiles2[$i]} ../resources/jailbreak
|
|
fi
|
|
JBFiles2[$i]=jailbreak/${JBFiles2[$i]}
|
|
done
|
|
cd ..
|
|
|
|
elif [[ $Jailbreak == 1 ]]; then
|
|
cd $BundlePath/$Bundle
|
|
cp Info.plist Info.plist.bak
|
|
sed -z -i "s|</dict>\n</plist>|\t<key>needPref</key>\n\t<true/>\n</dict>\n</plist>|g" Info.plist
|
|
cd ../../../..
|
|
if [[ $OSVer == "8.4.1" ]]; then
|
|
JBFiles=("fstab.tar" "etasonJB-untether.tar" "Cydia8.tar")
|
|
JBSHA1="6459dbcbfe871056e6244d23b33c9b99aaeca970"
|
|
ExtraArgs+="-s 2305 "
|
|
elif [[ $OSVer == "6.1.3" ]]; then
|
|
JBFiles=("fstab_rw.tar" "p0sixspwn.tar" "Cydia6.tar")
|
|
JBSHA1="1d5a351016d2546aa9558bc86ce39186054dc281"
|
|
ExtraArgs+="-s 1260 "
|
|
else
|
|
Error "No OSVer selected?"
|
|
fi
|
|
if [[ ! -e resources/jailbreak/${JBFiles[2]} ]]; then
|
|
cd tmp
|
|
Log "Downloading ${JBFiles[2]}..."
|
|
SaveFile https://github.com/LukeZGD/iOS-OTA-Downgrader-Keys/releases/download/jailbreak/${JBFiles[2]} ${JBFiles[2]} $JBSHA1
|
|
mv ${JBFiles[2]} ../resources/jailbreak
|
|
cd ..
|
|
fi
|
|
for i in {0..2}; do
|
|
JBFiles[$i]=jailbreak/${JBFiles[$i]}
|
|
done
|
|
fi
|
|
ExtraArgs+="-bbupdate"
|
|
|
|
if [[ ! -e $IPSWCustom.ipsw ]]; then
|
|
Echo "* By default, memory option is set to Y, you may select N later if you encounter problems"
|
|
Echo "* If it doesn't work with both, you might not have enough RAM and/or tmp storage"
|
|
read -p "$(Input 'Memory option? (press Enter/Return if unsure) (Y/n):')" JBMemory
|
|
[[ $JBMemory != 'N' && $JBMemory != 'n' ]] && ExtraArgs+=" -memory"
|
|
Log "Preparing custom IPSW..."
|
|
cd resources
|
|
rm -rf FirmwareBundles
|
|
if [[ $JBDaibutsu == 1 && -d firmware/JailbreakBundles/$Bundle ]]; then
|
|
cp -R firmware/JailbreakBundles FirmwareBundles
|
|
else
|
|
cp -R firmware/FirmwareBundles FirmwareBundles
|
|
fi
|
|
$ipsw ./../$IPSW.ipsw ./../$IPSWCustom.ipsw $ExtraArgs ${JBFiles[@]}
|
|
cd ..
|
|
fi
|
|
if [[ ! -e $IPSWCustom.ipsw ]]; then
|
|
Error "Failed to find custom IPSW. Please run the script again" \
|
|
"You may try selecting N for memory option"
|
|
fi
|
|
|
|
Log "Setting restore IPSW to: $IPSWCustom.ipsw"
|
|
IPSWRestore=$IPSWCustom
|
|
}
|
|
|
|
IPSW64() {
|
|
if [[ $IPSWRestore == $IPSWCustom ]]; then
|
|
Log "Found existing Custom IPSW. Skipping IPSW creation."
|
|
return
|
|
fi
|
|
|
|
Log "Preparing custom IPSW..."
|
|
$bspatch $IPSW/Firmware/dfu/$iBSS.im4p $iBSS.im4p resources/patches/$iBSS.patch
|
|
$bspatch $IPSW/Firmware/dfu/$iBEC.im4p $iBEC.im4p resources/patches/$iBEC.patch
|
|
if [[ $ProductType == "iPad4"* ]]; then
|
|
$bspatch $IPSW/Firmware/dfu/$iBSSb.im4p $iBSSb.im4p resources/patches/$iBSSb.patch
|
|
$bspatch $IPSW/Firmware/dfu/$iBECb.im4p $iBECb.im4p resources/patches/$iBECb.patch
|
|
mv -f $iBSSb.im4p $iBECb.im4p $IPSW/Firmware/dfu
|
|
fi
|
|
mv -f $iBSS.im4p $iBEC.im4p $IPSW/Firmware/dfu
|
|
cd $IPSW
|
|
zip -rq0 ../$IPSWCustom.ipsw *
|
|
cd ..
|
|
mv $IPSW $IPSWCustom
|
|
if [[ ! -e $IPSWCustom.ipsw ]]; then
|
|
Error "Failed to find custom IPSW. Please run the script again"
|
|
fi
|
|
|
|
Log "Setting restore IPSW to: $IPSWCustom.ipsw"
|
|
IPSWRestore=$IPSWCustom
|
|
}
|