add jailbreak

This commit is contained in:
edwin 2023-03-24 14:30:30 -04:00
parent 5b9957db61
commit 8c9e7ddf72
2 changed files with 12 additions and 0 deletions

View file

@ -12,6 +12,10 @@ Example: ./downr1n.sh --downgrade 14.3
--dfuhelper A helper to help get A11 devices into DFU mode from recovery mode --dfuhelper A helper to help get A11 devices into DFU mode from recovery mode
--jailbreak jailbreak with pogo. usage ./downr1n --jailbreak 14.8
--taurine jailbreak with taurine. usage ./downr1n --jailbreak 14.3 --taurine
--boot this boot the device. --boot this boot the device.
--fixBoot that will boot the device using fsboot --fixBoot that will boot the device using fsboot

View file

@ -61,6 +61,8 @@ iOS 15 - 14.0 downgrade tool ./downr1n --downgrade 15.7 (the ios of your device)
Options: Options:
--downgrade downgrade tethered your device to ios 14,15. --downgrade downgrade tethered your device to ios 14,15.
--dfuhelper A helper to help get A11 devices into DFU mode from recovery mode --dfuhelper A helper to help get A11 devices into DFU mode from recovery mode
--jailbreak jailbreak with pogo. usage ./downr1n --jailbreak 14.8
--taurine jailbreak with taurine. usage ./downr1n --jailbreak 14.3 --taurine
--boot this boot the device. --boot this boot the device.
--fixBoot that will boot the device using fsboot --fixBoot that will boot the device using fsboot
--debug Debug the script --debug Debug the script
@ -86,6 +88,12 @@ parse_opt() {
--boot) --boot)
boot=1 boot=1
;; ;;
--jailbreak)
jailbreak=1
;;
--taurine)
taurine=1
;;
--fixBoot) --fixBoot)
fixBoot=1 fixBoot=1
;; ;;