From ee8892702f4e4a1b284ba6a4ac1dc23ac43fb0a1 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Fri, 22 Jan 2021 14:16:07 +0300 Subject: [PATCH] tar2fs: fix e2k handling The missing glob resulted in disk images properly partitioned only for e2kv3 ("e2k" for historical reasons in ALT), and v4+ ones only got a single ext4 partition that wouldn't work with current MCST's Boot code. --- bin/tar2fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tar2fs b/bin/tar2fs index 877b3afb..f2982b14 100755 --- a/bin/tar2fs +++ b/bin/tar2fs @@ -44,7 +44,7 @@ fi BOOTTYPE="$8" case "$ARCH" in -e2k) +e2k*) BOOTFSTYPE="ext2" # firmware knows it BLOCKDEV="/dev/sda" # ...hopefully... BOOTPART="1"