From d3fe4e7058dfaa616aa8a4bb053c31c8d59c0135 Mon Sep 17 00:00:00 2001 From: Simon Long Date: Mon, 21 Mar 2022 12:04:41 +0000 Subject: [PATCH] Fix incorrect detection of read-only boot partition --- raspi-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raspi-config b/raspi-config index 086e9f0..4716caa 100755 --- a/raspi-config +++ b/raspi-config @@ -2466,7 +2466,7 @@ get_bootro_now() { } get_bootro_conf() { - grep /boot /etc/fstab | grep -q "defaults.*,ro " + grep /boot /etc/fstab | grep -q "defaults.*,ro[ ,]" echo $? }