mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2025-02-18 17:36:23 +01:00
Show "Jailbreak Device" option to S5L8900 devices, and redirect them to the correct option for jailbreaking, and fix iPhone1,2 error
This commit is contained in:
parent
efe7de0b4c
commit
ac6fbf9efc
10
restore.sh
10
restore.sh
@ -2649,7 +2649,7 @@ ipsw_prepare_keys() {
|
|||||||
local name=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .filename')
|
local name=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .filename')
|
||||||
local iv=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .iv')
|
local iv=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .iv')
|
||||||
local key=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .key')
|
local key=$(echo $fw_key | $jq -j '.keys[] | select(.image == "'$getcomp'") | .key')
|
||||||
if [[ -z $name ]]; then
|
if [[ -z $name && $device_proc != 1 ]]; then
|
||||||
error "Issue with firmware keys: Failed getting $getcomp. Check The Apple Wiki or your wikiproxy"
|
error "Issue with firmware keys: Failed getting $getcomp. Check The Apple Wiki or your wikiproxy"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -6020,7 +6020,7 @@ menu_main() {
|
|||||||
input "Select an option:"
|
input "Select an option:"
|
||||||
if [[ $device_mode != "none" ]]; then
|
if [[ $device_mode != "none" ]]; then
|
||||||
menu_items+=("Restore/Downgrade")
|
menu_items+=("Restore/Downgrade")
|
||||||
if (( device_proc < 7 )) && [[ $device_proc != 1 ]]; then
|
if (( device_proc < 7 )); then
|
||||||
menu_items+=("Jailbreak Device")
|
menu_items+=("Jailbreak Device")
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -7614,7 +7614,11 @@ device_alloc8() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
device_jailbreak() {
|
device_jailbreak() {
|
||||||
if [[ $device_vers == *"iBoot"* || $device_vers == "Unknown"* ]]; then
|
if [[ $device_proc == 1 ]]; then
|
||||||
|
print "* The \"Jailbreak Device\" option is not supported for this device."
|
||||||
|
print "* To jailbreak, go to \"Restore/Downgrade\" instead, select 4.1 or 3.1.3, then enable the jailbreak option."
|
||||||
|
return
|
||||||
|
elif [[ $device_vers == *"iBoot"* || $device_vers == "Unknown"* ]]; then
|
||||||
read -p "$(input 'Enter current iOS version (eg. 6.1.3): ')" device_vers
|
read -p "$(input 'Enter current iOS version (eg. 6.1.3): ')" device_vers
|
||||||
else
|
else
|
||||||
case $device_vers in
|
case $device_vers in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user