From 06fc0356218485d3df503fe03abcddcc3e57d6aa Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 17 Aug 2016 12:59:05 +0100 Subject: [PATCH] move arm boot partition to ext3 With e2fsprogs after 1.43 the 64bit and metadata_csum features are enabled by default. These features are not currently supported in u-boot and the 64bit feature introduces changes such that it cannot be read by implementations that do not support it. U-Boot does not support the functionality and hence now won't mount it just in case it corrupts the filesystem, which is a reasonable response, this how ever stops us from booting when we have a ext4 /boot file system which means basically we end up with a pot plant. Go back to using ext3 for the time being as the mkfs.ext3 option doesn't enable these features and we get booting systems!! YAY \o/ --- fedora-arm-base.ks | 2 +- fedora-arm-minimal.ks | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks index 030cd27..c2a9641 100644 --- a/fedora-arm-base.ks +++ b/fedora-arm-base.ks @@ -7,7 +7,7 @@ firewall --enabled --service=mdns,ssh # configure extlinux bootloader bootloader extlinux -part /boot --size=512 --fstype ext4 +part /boot --size=512 --fstype ext3 part swap --size=512 --fstype swap part / --size=3584 --fstype ext4 diff --git a/fedora-arm-minimal.ks b/fedora-arm-minimal.ks index 3f5126b..edd97f9 100644 --- a/fedora-arm-minimal.ks +++ b/fedora-arm-minimal.ks @@ -1,6 +1,6 @@ %include fedora-arm-base.ks -part /boot --size=512 --fstype ext4 +part /boot --size=512 --fstype ext3 part swap --size=256 --fstype swap part / --size=1279 --fstype ext4