mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2024-12-04 05:44:17 +01:00
skip first flag in menu
This commit is contained in:
parent
2d9343270b
commit
dc9c84d91f
22
restore.sh
22
restore.sh
@ -3566,6 +3566,10 @@ ipsw_prepare_ios4multipart() {
|
|||||||
zip -r0 ../../$ipsw_custom_part2.ipsw *
|
zip -r0 ../../$ipsw_custom_part2.ipsw *
|
||||||
popd >/dev/null
|
popd >/dev/null
|
||||||
|
|
||||||
|
if [[ $ipsw_skip_first == 1 ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
# ------ part 2 (nor flash) ends here. start creating part 1 ipsw ------
|
# ------ part 2 (nor flash) ends here. start creating part 1 ipsw ------
|
||||||
case $device_target_vers in
|
case $device_target_vers in
|
||||||
4.2* ) ipsw_prepare_32bit $iboot;;
|
4.2* ) ipsw_prepare_32bit $iboot;;
|
||||||
@ -7360,9 +7364,10 @@ menu_flags() {
|
|||||||
menu_items+=("Enable skip-ibss flag")
|
menu_items+=("Enable skip-ibss flag")
|
||||||
fi
|
fi
|
||||||
menu_items+=("Enable jailbreak flag")
|
menu_items+=("Enable jailbreak flag")
|
||||||
if [[ $device_proc != 6 ]]; then
|
case $device_type in
|
||||||
menu_items+=("Enable gasgauge-patch flag")
|
iPhone4,1 ) menu_items+=("Enable gasgauge-patch flag");;
|
||||||
fi
|
iPhone3,[13] | iPad1,1 | iPod3,1 ) menu_items+=("Enable skip-first flag");;
|
||||||
|
esac
|
||||||
menu_items+=("Go Back")
|
menu_items+=("Go Back")
|
||||||
menu_print_info
|
menu_print_info
|
||||||
print " > Main Menu > Other Utilities > Enable Flags"
|
print " > Main Menu > Other Utilities > Enable Flags"
|
||||||
@ -7434,6 +7439,17 @@ menu_flags() {
|
|||||||
back=1
|
back=1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
"Enable skip-first flag" )
|
||||||
|
warn "This will enable the --skip-first flag."
|
||||||
|
print "* This will skip first restore and flash NOR IPSW only for powdersn0w 4.2.1 and lower."
|
||||||
|
print "* Do not enable this if you do not know what you are doing."
|
||||||
|
local opt
|
||||||
|
read -p "$(input 'Do you want to enable the skip-ibss flag? (y/N): ')" opt
|
||||||
|
if [[ $opt == 'y' || $opt == 'Y' ]]; then
|
||||||
|
ipsw_skip_first=1
|
||||||
|
back=1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
"Go Back" ) back=1;;
|
"Go Back" ) back=1;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user