diff --git a/README.md b/README.md index 1a89ae4..caeb9da 100644 --- a/README.md +++ b/README.md @@ -102,9 +102,9 @@ - [futurerestore version](https://github.com/futurerestore/futurerestore/) used on macOS - [idevicerestore](https://github.com/libimobiledevice/idevicerestore) - libimobiledevice; [LukeZGD fork](https://github.com/LukeZGD/idevicerestore) - [idevicererestore](https://github.com/LukeZGD/daibutsuCFW/tree/main/src/idevicererestore) from daibutsuCFW (used on custom IPSW restores for A5/A6 devices) -- [kloader](https://www.youtube.com/watch?v=fh0tB6fp0Sc) -- [kloader5 for iOS 5](https://www.pmbonneau.com/cydia/com.pmbonneau.kloader5_1.2_iphoneos-arm.deb) -- [kloader_hgsp for iOS 10](https://twitter.com/nyan_satan/status/945203180522045440) (used on h3lix only) +- [kloader from axi0mX](https://github.com/axi0mX/ios-kexec-utils/blob/master/kloader) +- [kloader from Odysseus](https://www.youtube.com/watch?v=fh0tB6fp0Sc) (used on iOS 10 only) +- [kloader_hgsp from nyan_satan](https://twitter.com/nyan_satan/status/945203180522045440) (used on h3lix only) - [partial-zip](https://github.com/matteyeux/partial-zip) - [zenity](https://github.com/GNOME/zenity); [macOS/Windows builds](https://github.com/ncruces/zenity) - 32-bit bundles from [OdysseusOTA](https://www.youtube.com/watch?v=Wo7mGdMcjxw), [OdysseusOTA2](https://www.youtube.com/watch?v=fh0tB6fp0Sc), [alitek12](https://www.mediafire.com/folder/b1z64roy512wd/FirmwareBundles), [gjest](https://www.reddit.com/r/jailbreak/comments/6yrzzj/release_firmware_bundles_for_ios_841_ipad21234567/) (modified bundles for daibutsuCFW) diff --git a/resources/kloader b/resources/kloader index 56398b6..2caa7d8 100755 Binary files a/resources/kloader and b/resources/kloader differ diff --git a/resources/kloader2 b/resources/kloader2 new file mode 100755 index 0000000..56398b6 Binary files /dev/null and b/resources/kloader2 differ diff --git a/resources/kloader5 b/resources/kloader5 deleted file mode 100755 index ec6b2c8..0000000 Binary files a/resources/kloader5 and /dev/null differ diff --git a/restore.sh b/restore.sh index 5ec745f..397a11f 100755 --- a/restore.sh +++ b/restore.sh @@ -769,12 +769,9 @@ device_enter_mode() { echo "chmod +x /tmp/kloader*" > kloaders if [[ $device_det == 1 ]]; then echo '[[ $(uname -a | grep -c "MarijuanARM") == 1 ]] && /tmp/kloader_hgsp /tmp/pwnediBSS || \ - /tmp/kloader /tmp/pwnediBSS' >> kloaders + /tmp/kloader2 /tmp/pwnediBSS' >> kloaders sendfiles+=("../resources/kloader_hgsp") - sendfiles+=("../resources/kloader") - elif [[ $device_det == 5 ]]; then - echo "/tmp/kloader5 /tmp/pwnediBSS" >> kloaders - sendfiles+=("../resources/kloader5") + sendfiles+=("../resources/kloader2") else echo "/tmp/kloader /tmp/pwnediBSS" >> kloaders sendfiles+=("../resources/kloader")