From 14b409d350a6b45991a7b8d49a46312c86fc718b Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Wed, 20 Apr 2022 21:00:03 +0100 Subject: [PATCH] Support mmc disks --- scripts/0-preinstall.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/0-preinstall.sh b/scripts/0-preinstall.sh index 63af03a..4682244 100755 --- a/scripts/0-preinstall.sh +++ b/scripts/0-preinstall.sh @@ -106,6 +106,9 @@ subvolumesetup () { if [[ "${DISK}" =~ "nvme" ]]; then partition2=${DISK}p2 partition3=${DISK}p3 +elif [[ "${DISK}" =~ "mmc" ]]; then + partition2=${DISK}p2 + partition3=${DISK}p3 else partition2=${DISK}2 partition3=${DISK}3