From 219d994da16eade0a00f52f9b560e3321bc64d24 Mon Sep 17 00:00:00 2001 From: LukeeGD <26163116+LukeZGD@users.noreply.github.com> Date: Mon, 25 Nov 2024 07:20:16 +0800 Subject: [PATCH] Fix issues with just boot fixes #628 --- restore.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/restore.sh b/restore.sh index f5f8ff6..e98e8d1 100755 --- a/restore.sh +++ b/restore.sh @@ -8144,6 +8144,9 @@ menu_other() { if [[ $device_mode == "Normal" ]]; then menu_items+=("Enter kDFU Mode") fi + #if [[ $device_type != "iPod2,1" ]]; then + # menu_items+=("Just Boot") + #fi case $device_proc in [56] ) menu_items+=("Send Pwned iBSS");; * ) menu_items+=("Enter pwnDFU Mode");; @@ -8851,8 +8854,10 @@ menu_justboot() { menu_ipsw_browse ipsw_justboot_path="$ipsw_path" vers="$device_target_build" + device_rd_build="$vers" ;; "Custom Bootargs" ) read -p "$(input 'Enter custom bootargs: ')" device_justboot_bootargs;; + "Just Boot" ) mode="device_justboot";; "Go Back" ) back=1;; esac done