Legacy-iOS-Kit/resources/blobs.sh

50 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
SaveOTABlobs() {
local APNonce=$1
2021-07-12 07:39:48 +02:00
local ExtraArgs
local SHSHChk
2021-07-12 07:39:48 +02:00
local SHSHContinue
local SHSHExisting
Log "Saving $OSVer blobs with tsschecker..."
BuildManifest="resources/manifests/BuildManifest_${ProductType}_${OSVer}.plist"
ExtraArgs="-d $ProductType -i $OSVer -e $UniqueChipID -m $BuildManifest -o -s -B ${HWModel}ap"
SHSHChk=${UniqueChipID}_${ProductType}_${HWModel}ap_${OSVer}-${BuildVer}*.shsh*
if [[ $DeviceProc == 7 ]]; then
if [[ ! -z $APNonce ]]; then
ExtraArgs+=" --apnonce $APNonce"
SHSHChk=${UniqueChipID}_${ProductType}_${HWModel}ap_${OSVer}-${BuildVer}_${APNonce}.shsh*
else
ExtraArgs+=" --generator 0x1111111111111111"
fi
fi
2021-07-12 07:39:48 +02:00
$tsschecker $ExtraArgs
SHSH=$(ls $SHSHChk)
SHSHExisting=$(ls saved/shsh/$SHSHChk 2>/dev/null)
if [[ ! $SHSH && ! $SHSHExisting ]]; then
2021-08-26 13:45:53 +02:00
Log "Saving $OSVer blobs failed. Trying again with fallback..."
ExtraArgs+=" --no-baseband"
$tsschecker $ExtraArgs
2021-07-12 07:39:48 +02:00
SHSH=$(ls $SHSHChk)
if [[ ! $SHSH ]]; then
Error "Saving $OSVer blobs failed. Please run the script again" \
"It is also possible that $OSVer for $ProductType is no longer signed"
fi
elif [[ ! $SHSH ]]; then
2021-05-30 05:03:39 +02:00
Log "Saving $OSVer blobs failed, but found existing saved SHSH blobs. Continuing..."
cp $SHSHExisting .
SHSH=$(ls $SHSHChk)
2021-07-12 07:39:48 +02:00
SHSHContinue=1
fi
if [[ ! -z $SHSH && $SHSHContinue != 1 ]]; then
mkdir -p saved/shsh 2>/dev/null
[[ -z $APNonce ]] && cp "$SHSH" saved/shsh
Log "Successfully saved $OSVer blobs."
fi
}