fixing a possible infinite loop
This commit is contained in:
parent
27468e64c0
commit
3c99a74ce2
1 changed files with 2 additions and 2 deletions
|
|
@ -1267,7 +1267,7 @@ if [ true ]; then
|
||||||
|
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
if [ ! "$version" = "$SystemVersion" ]; then
|
if [ ! "$version" = "$SystemVersion" ] && [ ! "$version" = "" ]; then
|
||||||
echo "Version detected!. we are gonna use $SystemVersion"
|
echo "Version detected!. we are gonna use $SystemVersion"
|
||||||
ipswLLB=$(curl -sL "https://api.ipsw.me/v4/device/$deviceid?type=ipsw" | "$dir"/jq '.firmwares | .[] | select(.version=="'$SystemVersion'")' | "$dir"/jq -s '.[0] | .url' --raw-output)
|
ipswLLB=$(curl -sL "https://api.ipsw.me/v4/device/$deviceid?type=ipsw" | "$dir"/jq '.firmwares | .[] | select(.version=="'$SystemVersion'")' | "$dir"/jq -s '.[0] | .url' --raw-output)
|
||||||
else
|
else
|
||||||
|
|
@ -1295,7 +1295,7 @@ if [ true ]; then
|
||||||
cp -f work/$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" work/BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//') "$extractedIpsw/Firmware/all_flash/$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" work/BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')"
|
cp -f work/$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" work/BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//') "$extractedIpsw/Firmware/all_flash/$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" work/BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')"
|
||||||
cd $extractedIpsw
|
cd $extractedIpsw
|
||||||
zip --update "$mainDir/$ipsw" Firmware/all_flash/"$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')" Firmware/all_flash//$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')
|
zip --update "$mainDir/$ipsw" Firmware/all_flash/"$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')" Firmware/all_flash//$(awk "/""${model}""/{x=1}x&&/LLB[.]/{print;exit}" BuildManifest.plist | grep '<string>' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')
|
||||||
cd "$mainDir"
|
cd $mainDir
|
||||||
echo "[*] Replaced LLB suscessfully"
|
echo "[*] Replaced LLB suscessfully"
|
||||||
|
|
||||||
touch "boot/${deviceid}/.llbreplaced"
|
touch "boot/${deviceid}/.llbreplaced"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue