From efbac7a2dfbed1cee22898e94918e8e00bc3eb09 Mon Sep 17 00:00:00 2001 From: LukeZGD <26163116+LukeZGD@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:54:39 +0800 Subject: [PATCH] Fix fstab_old not being added --- restore.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/restore.sh b/restore.sh index 248c899..5e33755 100755 --- a/restore.sh +++ b/restore.sh @@ -2011,11 +2011,8 @@ ipsw_prepare_custom() { if [[ $ipsw_jailbreak == 1 ]]; then log "Extracting Cydia" "$dir/hfsplus" out.dmg untar ../resources/jailbreak/freeze.tar - if [[ $device_type == "iPod2,1" ]]; then - "$dir/hfsplus" out.dmg add ../resources/jailbreak/fstab_old private/etc/fstab - fi case $device_target_vers in - "3.1.3" | "4.0" ) :;; + "3.1.3" | "4.0" ) "$dir/hfsplus" out.dmg add ../resources/jailbreak/fstab_old private/etc/fstab;; * ) "$dir/hfsplus" out.dmg untar ../resources/jailbreak/unthredeh4il.tar;; esac fi