From 2adefeb206e333bcefc3c7ecd4db2b550c8ae0a6 Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Tue, 30 Jan 2024 10:17:54 -0800 Subject: [PATCH] main/postmarketos-initramfs: tweak msg when boot or root not found (4775) --- main/postmarketos-initramfs/init_functions.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main/postmarketos-initramfs/init_functions.sh b/main/postmarketos-initramfs/init_functions.sh index cf9982aaf..360ee4c12 100644 --- a/main/postmarketos-initramfs/init_functions.sh +++ b/main/postmarketos-initramfs/init_functions.sh @@ -346,20 +346,20 @@ extract_initramfs_extra() { wait_boot_partition() { while [ -z "$(find_boot_partition)" ]; do - show_splash "ERROR: boot partition not found\\nhttps://postmarketos.org/troubleshooting" - echo "Could not find the boot parition." - echo "Maybe you need to insert the sdcard, if your device has" - echo "any? Trying again in one second..." + show_splash "ERROR: boot partition not found, retrying...\\nhttps://postmarketos.org/troubleshooting" + echo "Could not find the boot partition." + echo "If your install is on a removable disk, maybe you need to insert it?" + echo "Trying again..." sleep 1 done } wait_root_partition() { while [ -z "$(find_root_partition)" ]; do - show_splash "ERROR: root partition not found\\nhttps://postmarketos.org/troubleshooting" + show_splash "ERROR: root partition not found, retrying...\\nhttps://postmarketos.org/troubleshooting" echo "Could not find the rootfs." - echo "Maybe you need to insert the sdcard, if your device has" - echo "any? Trying again in one second..." + echo "If your install is on a removable disk, maybe you need to insert it?" + echo "Trying again..." sleep 1 done }