Fix ramdisk version select A5/A6 (fix #497)

This commit is contained in:
LukeZGD 2024-06-02 01:41:47 +08:00
parent ae64966930
commit 08a8ef0d14

View File

@ -6875,7 +6875,7 @@ device_enter_ramdisk() {
return return
elif (( device_proc >= 5 )) && [[ $device_vers == "9"* || $device_vers == "10"* ]]; then elif (( device_proc >= 5 )) && [[ $device_vers == "9"* || $device_vers == "10"* ]]; then
device_rd_build="13A452" device_rd_build="13A452"
elif (( device_proc >= 5 )) && (( device_det <= 8 )); then elif (( device_proc >= 5 )) && (( device_det <= 8 )) && [[ $device_mode == "Normal" ]]; then
: :
elif (( device_proc >= 5 )); then elif (( device_proc >= 5 )); then
print "* To mount /var (/mnt2) for iOS 9-10, I recommend using 9.0.2 (13A452)." print "* To mount /var (/mnt2) for iOS 9-10, I recommend using 9.0.2 (13A452)."