From 8e68bb90b9fcaec73103e1103e4f5081b58be0f7 Mon Sep 17 00:00:00 2001 From: LukeZGD <26163116+LukeZGD@users.noreply.github.com> Date: Sun, 17 Sep 2023 13:26:13 +0800 Subject: [PATCH] Fix checkm8-a5 iBSS fixed by sending unpacked ibss instead of repacked img3 --- restore.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/restore.sh b/restore.sh index bfe60ce..0be4284 100755 --- a/restore.sh +++ b/restore.sh @@ -1305,7 +1305,7 @@ device_ipwndfu() { if [[ $1 == "send_ibss" ]]; then patch_ibss - cp pwnediBSS.dfu ../resources/ipwndfu/ + cp pwnediBSS ../resources/ipwndfu/ fi device_enter_mode DFU @@ -1319,9 +1319,9 @@ device_ipwndfu() { case $1 in "send_ibss" ) log "Sending iBSS..." - $python2 ipwndfu -l pwnediBSS.dfu + $python2 ipwndfu -l pwnediBSS tool_pwned=$? - rm pwnediBSS.dfu + rm pwnediBSS if [[ $tool_pwned != 0 ]]; then popd >/dev/null error "Failed to send iBSS. Your device has likely failed to enter PWNED DFU mode." \