commit 2d4e03804640ef8981b6ce87ba021176869dbab5 parent fa3c7ea707e6a740b8a98f4eb671483104e26e88 Author: parazyd <parazyd@dyne.org> Date: Tue, 13 Mar 2018 20:10:34 +0100 Add variable bootfs formatting opts. Diffstat:
M | zlibs/imaging | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/zlibs/imaging b/zlibs/imaging @@ -47,15 +47,15 @@ image_format_partitions() { ;; vfat|fat|dos) act "formatting boot as vfat" - sudo mkfs.vfat ${bootpart} + sudo mkfs.vfat ${=bootopts} ${bootpart} ;; ext4) act "formatting boot as ext4" - sudo mkfs.ext4 ${bootpart} + sudo mkfs.ext4 ${=bootopts} ${bootpart} ;; ext2) act "formating boot as ext2" - sudo mkfs.ext2 ${bootpart} + sudo mkfs.ext2 ${=bootopts} ${bootpart} ;; *) error "unknown parted_bootfs type '$bootfs'"