This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a change to branch f25 in repository fedora-kickstarts.
from 722a788 specify libcrypt packages in fedora-arm-base for RHBZ #1324623 new 06fc035 move arm boot partition to ext3
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: fedora-arm-base.ks | 2 +- fedora-arm-minimal.ks | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a commit to branch f25 in repository fedora-kickstarts.
commit 06fc0356218485d3df503fe03abcddcc3e57d6aa Author: Peter Robinson pbrobinson@gmail.com Date: Wed Aug 17 12:59:05 2016 +0100
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