overlay: check for block device

strangely enough block devices are block devices and not regular files
;)
This commit is contained in:
Harald Sitter
2024-04-07 17:30:47 +02:00
parent 681c61ebd9
commit f9e800805b

View File

@@ -5,7 +5,7 @@
set -ex
rootdisk=/dev/disk/by-partlabel/KDEOS
if [ -r /dev/gpt-auto-root ]; then
if [ -b /dev/gpt-auto-root ]; then
# When the partition was auto detected we can just use the auto-root device
rootdisk=/dev/gpt-auto-root
fi