An update to some messages

This commit is contained in:
LukeZGD 2024-03-03 18:54:49 +08:00
parent d77d424953
commit dac381ea52
2 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Legacy iOS Kit # Legacy iOS Kit
- (formerly iOS-OTA-Downgrader) - (formerly iOS-OTA-Downgrader)
- **An all-in-one tool to restore/downgrade, save SHSH blobs, and jailbreak legacy iOS devices** - **An all-in-one tool to [restore/downgrade](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/Restore-Downgrade), [save SHSH blobs](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/Saving-SHSH-blobs), and [jailbreak](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/Jailbreaking) legacy iOS devices**
- Supported on **Linux and macOS** - Supported on **Linux and macOS**
- **Read the ["How to Use" wiki page](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/How-to-Use) for instructions** - **Read the ["How to Use" wiki page](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/How-to-Use) for instructions**
- **Read the ["Troubleshooting" wiki page](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/Troubleshooting) for tips, frequent questions, and troubleshooting** - **Read the ["Troubleshooting" wiki page](https://github.com/LukeZGD/Legacy-iOS-Kit/wiki/Troubleshooting) for tips, frequent questions, and troubleshooting**

View File

@ -1239,7 +1239,11 @@ device_enter_mode() {
elif [[ $device_mode == "DFU" && $mode != "pwned-ibss" && $device_boot4 != 1 && elif [[ $device_mode == "DFU" && $mode != "pwned-ibss" && $device_boot4 != 1 &&
$device_proc != 4 ]] && (( device_proc < 7 )); then $device_proc != 4 ]] && (( device_proc < 7 )); then
print "* Select Y if your device is in pwned iBSS/kDFU mode." print "* Select Y if your device is in pwned iBSS/kDFU mode."
print "* Select N to place device to pwned DFU mode using ipwndfu/ipwnder." if [[ $device_proc == 5 ]]; then
print "* Select N if this is not the case. (pwned using checkm8-a5)"
else
print "* Select N to place device to pwned DFU mode using ipwndfu/ipwnder."
fi
print "* Failing to answer correctly will cause \"Sending iBEC\" to fail." print "* Failing to answer correctly will cause \"Sending iBEC\" to fail."
read -p "$(input 'Is your device already in pwned iBSS/kDFU mode? (y/N): ')" opt read -p "$(input 'Is your device already in pwned iBSS/kDFU mode? (y/N): ')" opt
if [[ $opt == "Y" || $opt == "y" ]]; then if [[ $opt == "Y" || $opt == "y" ]]; then
@ -4828,6 +4832,9 @@ menu_print_info() {
echo echo
print "* Device: $device_type (${device_model}ap) in $device_mode mode" print "* Device: $device_type (${device_model}ap) in $device_mode mode"
device_manufacturing device_manufacturing
if [[ $device_proc == 1 ]]; then
warn "This device is only partially supported by Legacy iOS Kit. Some features may not work properly."
fi
if [[ -n $device_disable_bbupdate && $device_type == "iPhone"* ]]; then if [[ -n $device_disable_bbupdate && $device_type == "iPhone"* ]]; then
warn "Disable bbupdate flag detected, baseband update is disabled. Proceed with caution" warn "Disable bbupdate flag detected, baseband update is disabled. Proceed with caution"
print "* For iPhones, current baseband will be dumped and stitched to custom IPSW" print "* For iPhones, current baseband will be dumped and stitched to custom IPSW"
@ -5808,7 +5815,7 @@ menu_other() {
if [[ $device_proc != 1 ]]; then if [[ $device_proc != 1 ]]; then
menu_items+=("Enable activation-records flag") menu_items+=("Enable activation-records flag")
fi fi
if [[ $device_proc != 4 ]]; then if (( device_proc >= 5 )); then
menu_items+=("Enable skip-ibss flag") menu_items+=("Enable skip-ibss flag")
fi fi
fi fi