From b3ab42f1952021e37e9998810ad61dc47e04c67a Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 15 Jan 2023 17:59:23 +0100 Subject: [PATCH] list linear raid --- usr/lib/archboot/installer/blockdevices.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index 68f2af82e..14def654b 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -76,7 +76,7 @@ _blockdevices_partitions() { # list none partitionable raid md devices _raid_devices() { - for dev in $(${_LSBLK} NAME,TYPE | grep " raid.*$" | cut -d' ' -f 1 | sort -u); do + for dev in $(${_LSBLK} NAME,TYPE | grep " raid.*$\| linear$" | cut -d' ' -f 1 | sort -u); do # exclude checks: # - part of lvm2 device_found # ${_LSBLK} FSTYPE ${dev} | grep "LVM2_member"