From c018a20268fb4c47c3207aa37aa2dc7feee92f08 Mon Sep 17 00:00:00 2001 From: parazyd Date: Fri, 27 Oct 2017 19:22:48 +0200 Subject: [PATCH] add ext2 support for partitioning --- zlibs/imaging | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zlibs/imaging b/zlibs/imaging index 8577c93..3aa7e38 100644 --- a/zlibs/imaging +++ b/zlibs/imaging @@ -52,6 +52,9 @@ image_format_partitions() { ext4) act "formatting boot as ext4" sudo mkfs.ext4 ${bootpart} + ext2) + act "formating boot as ext2" + sudo mkfs.ext2 ${bootpart} ;; *) error "unknown parted_bootfs type '$bootfs'"