mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2025-06-04 13:12:40 +02:00
Some fixes for S5L8900 devices
- fix restoring with some custom ipsws by sending ibss before restore (fixes #718) - slightly change s5l8900xall patch for detecting s5l8900 devices in pwned dfu mode - allow sideloading on ios 6 too since it works there as i tested
This commit is contained in:
parent
8d4e780f3f
commit
03e060cf58
Binary file not shown.
46
restore.sh
46
restore.sh
@ -1044,7 +1044,6 @@ device_get_info() {
|
|||||||
log "Getting device info..."
|
log "Getting device info..."
|
||||||
if [[ $device_mode == "WTF" ]]; then
|
if [[ $device_mode == "WTF" ]]; then
|
||||||
device_proc=1
|
device_proc=1
|
||||||
device_wtfexit=1
|
|
||||||
device_s5l8900xall
|
device_s5l8900xall
|
||||||
fi
|
fi
|
||||||
case $device_mode in
|
case $device_mode in
|
||||||
@ -1343,12 +1342,19 @@ device_get_info() {
|
|||||||
pause
|
pause
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $device_mode == "DFU" && $device_proc == 1 && $device_wtfexit != 1 ]]; then
|
if [[ $device_proc == 1 && $device_mode == "DFU" ]]; then
|
||||||
log "Found an S5L8900 device in $device_mode mode. Your device needs to be in WTF mode to continue."
|
device_srtg="$($irecovery -q | grep "SRTG" | cut -c 7-)"
|
||||||
print "* Force restart your device and place it in normal or recovery mode, then re-enter WTF mode."
|
log "SRTG: $device_srtg"
|
||||||
print "* You can enter WTF mode by doing the DFU mode procedure."
|
if [[ $device_srtg == "iBoot-636.66.3x" ]]; then
|
||||||
device_dfuhelper norec WTFreal
|
device_pwnd="Pwnage 2.0"
|
||||||
device_find_mode WTFreal 100
|
else
|
||||||
|
log "Found an S5L8900 device in $device_mode mode. Your device needs to be in WTF mode to continue."
|
||||||
|
print "* Force restart your device and place it in normal or recovery mode, then re-enter WTF mode."
|
||||||
|
print "* You can enter WTF mode by doing the DFU mode procedure."
|
||||||
|
echo
|
||||||
|
device_dfuhelper norec WTFreal
|
||||||
|
device_find_mode WTFreal 100
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# set device_use_vers, device_use_build (where to get the baseband and manifest from for ota/other)
|
# set device_use_vers, device_use_build (where to get the baseband and manifest from for ota/other)
|
||||||
@ -1647,7 +1653,7 @@ device_dfuhelper() {
|
|||||||
if [[ $1 == "norec" || $mode == "device_dfuhelper" ]]; then
|
if [[ $1 == "norec" || $mode == "device_dfuhelper" ]]; then
|
||||||
rec=
|
rec=
|
||||||
fi
|
fi
|
||||||
if [[ $device_mode == "DFU" && $mode != "device_dfuhelper" ]]; then
|
if [[ $device_mode == "DFU" && $mode != "device_dfuhelper" && $device_proc != 1 ]]; then
|
||||||
log "Device is already in DFU mode"
|
log "Device is already in DFU mode"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
@ -1737,6 +1743,7 @@ device_enter_mode() {
|
|||||||
log "Found an S5L8900 device in $device_mode mode. Your device needs to be in WTF mode to continue."
|
log "Found an S5L8900 device in $device_mode mode. Your device needs to be in WTF mode to continue."
|
||||||
print "* Force restart your device and place it in normal or recovery mode, then re-enter WTF mode."
|
print "* Force restart your device and place it in normal or recovery mode, then re-enter WTF mode."
|
||||||
print "* You can enter WTF mode by doing the DFU mode procedure."
|
print "* You can enter WTF mode by doing the DFU mode procedure."
|
||||||
|
echo
|
||||||
device_dfuhelper norec WTFreal
|
device_dfuhelper norec WTFreal
|
||||||
device_find_mode WTFreal 100
|
device_find_mode WTFreal 100
|
||||||
;;
|
;;
|
||||||
@ -4866,7 +4873,7 @@ ipsw_prepare_patchcomp() {
|
|||||||
ipsw_prepare_s5l8900() {
|
ipsw_prepare_s5l8900() {
|
||||||
local rname="018-6494-014.dmg"
|
local rname="018-6494-014.dmg"
|
||||||
local sha1E="4f6539d2032a1c7e1a068c667e393e62d8912700"
|
local sha1E="4f6539d2032a1c7e1a068c667e393e62d8912700"
|
||||||
local sha1L
|
local sha1L="none"
|
||||||
ipsw_url="https://github.com/LukeZGD/Legacy-iOS-Kit-Keys/releases/download/jailbreak/"
|
ipsw_url="https://github.com/LukeZGD/Legacy-iOS-Kit-Keys/releases/download/jailbreak/"
|
||||||
if [[ $device_target_vers == "4.1" ]]; then
|
if [[ $device_target_vers == "4.1" ]]; then
|
||||||
rname="018-7079-079.dmg"
|
rname="018-7079-079.dmg"
|
||||||
@ -5319,6 +5326,10 @@ restore_latest() {
|
|||||||
else
|
else
|
||||||
ExtraArgs="-e"
|
ExtraArgs="-e"
|
||||||
fi
|
fi
|
||||||
|
elif [[ $device_proc == 1 && $device_target_vers == "3.1.3" && $mode == "customipsw" ]]; then
|
||||||
|
log "Sending iBSS..."
|
||||||
|
$irecovery -f "$ipsw_custom/Firmware/dfu/iBSS.${device_model}ap.RELEASE.dfu"
|
||||||
|
device_find_mode Recovery
|
||||||
fi
|
fi
|
||||||
if [[ $debug_mode == 1 ]]; then
|
if [[ $debug_mode == 1 ]]; then
|
||||||
ExtraArgs+="d"
|
ExtraArgs+="d"
|
||||||
@ -7043,7 +7054,7 @@ menu_main() {
|
|||||||
if [[ $device_mode == "Normal" ]]; then
|
if [[ $device_mode == "Normal" ]]; then
|
||||||
case $device_vers in
|
case $device_vers in
|
||||||
[12].* ) :;;
|
[12].* ) :;;
|
||||||
[12789]* ) menu_items+=("Sideload IPA");;
|
[126789]* ) menu_items+=("Sideload IPA");;
|
||||||
esac
|
esac
|
||||||
menu_items+=("App Management" "Data Management")
|
menu_items+=("App Management" "Data Management")
|
||||||
fi
|
fi
|
||||||
@ -7235,7 +7246,7 @@ menu_ipa() {
|
|||||||
print " is installed on your device, if the IPA you are installing is cracked."
|
print " is installed on your device, if the IPA you are installing is cracked."
|
||||||
print "* Install IPA (AppSync) will not work if your device is not activated."
|
print "* Install IPA (AppSync) will not work if your device is not activated."
|
||||||
else
|
else
|
||||||
print "* Sideload IPA is for iOS 7 and newer. Sideloading will require an Apple ID."
|
print "* Sideload IPA is for iOS 6 and newer. Sideloading will require an Apple ID."
|
||||||
print "* Your Apple ID and password will only be sent to Apple servers."
|
print "* Your Apple ID and password will only be sent to Apple servers."
|
||||||
print "* Make sure that the device is activated and connected to the Internet."
|
print "* Make sure that the device is activated and connected to the Internet."
|
||||||
print "* There is also the option to use Dadoum Sideloader: https://github.com/Dadoum/Sideloader"
|
print "* There is also the option to use Dadoum Sideloader: https://github.com/Dadoum/Sideloader"
|
||||||
@ -7289,7 +7300,7 @@ menu_ipa() {
|
|||||||
device_sideloader
|
device_sideloader
|
||||||
$sideloader install "$ipa_path" -i -d
|
$sideloader install "$ipa_path" -i -d
|
||||||
local ipa_base="$(basename "$ipa_path")"
|
local ipa_base="$(basename "$ipa_path")"
|
||||||
local ipa_check="$(ls "/tmp/$ipa_base/Payload/"*".app/embedded.mobileprovision")"
|
local ipa_check="$(ls "/tmp/$ipa_base/Payload/"*".app/embedded.mobileprovision" 2>/dev/null)"
|
||||||
if [[ -s "$ipa_check" && $platform == "linux" ]] && (( device_det <= 8 )); then
|
if [[ -s "$ipa_check" && $platform == "linux" ]] && (( device_det <= 8 )); then
|
||||||
log "Attempting workaround for iOS 8 and lower..."
|
log "Attempting workaround for iOS 8 and lower..."
|
||||||
pushd "/tmp/$ipa_base"
|
pushd "/tmp/$ipa_base"
|
||||||
@ -8962,8 +8973,9 @@ device_update_datetime() {
|
|||||||
device_datetime_cmd
|
device_datetime_cmd
|
||||||
kill $iproxy_pid
|
kill $iproxy_pid
|
||||||
elif [[ $device_proc == 1 ]]; then # s5l8900 device not in normal mode
|
elif [[ $device_proc == 1 ]]; then # s5l8900 device not in normal mode
|
||||||
error "Device is not in normal mode, cannot continue." \
|
warn "Device is not in normal mode, cannot continue."
|
||||||
"* Place your device in normal mode and jailbroken to use Update DateTime, since SSH Ramdisk is not supported for this device."
|
print "* Place your device in normal mode and jailbroken to use Update DateTime, since SSH Ramdisk is not supported for this device."
|
||||||
|
pause
|
||||||
else
|
else
|
||||||
mode="getversion"
|
mode="getversion"
|
||||||
fi
|
fi
|
||||||
@ -9467,7 +9479,11 @@ restore_customipsw() {
|
|||||||
error "No IPSW selected, cannot continue."
|
error "No IPSW selected, cannot continue."
|
||||||
fi
|
fi
|
||||||
if [[ $device_proc == 1 ]]; then
|
if [[ $device_proc == 1 ]]; then
|
||||||
device_enter_mode WTFreal
|
if [[ $device_target_vers == "3.1.3" ]]; then
|
||||||
|
device_enter_mode DFU
|
||||||
|
else
|
||||||
|
device_enter_mode WTFreal
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
device_enter_mode pwnDFU
|
device_enter_mode pwnDFU
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user