mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2024-11-23 16:39:17 +01:00
Do not show PwnDFU Tool Option on ASi Macs
ASi Macs work with ipwnder only. Avoids issues like #252
This commit is contained in:
parent
09a6b4f3b2
commit
d03b923017
33
restore.sh
33
restore.sh
@ -817,23 +817,22 @@ device_enter_mode() {
|
||||
device_ipwndfu pwn
|
||||
elif [[ $device_proc == 7 ]]; then
|
||||
# A7 uses gaster or ipwnder
|
||||
opt="$gaster pwn"
|
||||
input "PwnDFU Tool Option"
|
||||
print "* Select tool to be used for entering pwned DFU mode."
|
||||
print "* This option is set to ipwnder by default (1)."
|
||||
input "Select your option:"
|
||||
select opt2 in "ipwnder" "gaster"; do
|
||||
case $opt2 in
|
||||
"gaster" ) break;;
|
||||
* )
|
||||
opt="$ipwnder"
|
||||
if [[ $platform != "macos" ]]; then
|
||||
opt+=" -p"
|
||||
fi
|
||||
break
|
||||
;;
|
||||
esac
|
||||
done
|
||||
opt="$ipwnder"
|
||||
if [[ $platform != "macos" ]]; then
|
||||
opt+=" -p"
|
||||
fi
|
||||
if [[ $platform != "macos" ]] || [[ $platform == "macos" && $(uname -m) == "x86_64" ]]; then
|
||||
input "PwnDFU Tool Option"
|
||||
print "* Select tool to be used for entering pwned DFU mode."
|
||||
print "* This option is set to ipwnder by default (1)."
|
||||
input "Select your option:"
|
||||
select opt2 in "ipwnder" "gaster"; do
|
||||
case $opt2 in
|
||||
"gaster" ) opt="$gaster pwn"; break;;
|
||||
* ) break;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
log "Placing device to pwnDFU mode using: $opt"
|
||||
$opt
|
||||
tool_pwned=$?
|
||||
|
Loading…
Reference in New Issue
Block a user