aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2024-02-26 03:56:36 +0000
committerDaniel Golle <daniel@makrotopia.org>2024-02-26 04:01:10 +0000
commit0c18c5679ad3f68f5e02aea20da36aa2d1d759d5 (patch)
tree0f5801c813951c4511fe475b2ec3e93c9d05048f
parent85f34990d334a450f3fb0d17800af7b8bf7f333d (diff)
base-files: export whole disk of fitblk backing partition
After commit ad62247800 ("base-files: improve lib/upgrade/common.sh") behavior of export_bootdevice has been made consistent in such way that always the whole disk device is exported (as that was the case already when matching via UUID) rather than the partition device. Do the same for the device holding the fitblk backing partition. Fixes: 5992f976b3 ("base-files: recognize bootdevice on devices using fitblk") Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r--package/base-files/files/lib/upgrade/common.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh
index 7e83379082..ef8d01e168 100644
--- a/package/base-files/files/lib/upgrade/common.sh
+++ b/package/base-files/files/lib/upgrade/common.sh
@@ -213,11 +213,8 @@ export_bootdevice() {
done
;;
/dev/*)
- if [ "$rootpart" = "/dev/fit0" ]; then
- uevent="/sys/class/block/$(fitblk_get_bootdev)/uevent"
- else
- uevent="/sys/class/block/${rootpart##*/}/../uevent"
- fi
+ [ "$rootpart" = "/dev/fit0" ] && rootpart="$(fitblk_get_bootdev)"
+ uevent="/sys/class/block/${rootpart##*/}/../uevent"
;;
0x[a-f0-9][a-f0-9][a-f0-9] | 0x[a-f0-9][a-f0-9][a-f0-9][a-f0-9] | \
[a-f0-9][a-f0-9][a-f0-9] | [a-f0-9][a-f0-9][a-f0-9][a-f0-9])