mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-13 03:24:21 +00:00
965fb1adab
The issue has been fixed upstream with improvements to ext4 support in u-boot 2016.11, in Fedora I backported these fixes to uboot-tools-2016.09.01-2.fc25 and they've now been verified and that release is now stable so we should be good to revert the ext3 partition workaround for F-25 GA.
27 lines
479 B
Plaintext
27 lines
479 B
Plaintext
%include fedora-arm-base.ks
|
|
|
|
part swap --size=256 --fstype swap
|
|
part / --size=1279 --fstype ext4
|
|
|
|
%packages
|
|
-@standard
|
|
-@dial-up
|
|
-initial-setup-gui
|
|
-generic-release*
|
|
-glibc-all-langpacks
|
|
glibc-langpack-en
|
|
iw
|
|
NetworkManager-wifi
|
|
%end
|
|
|
|
%post
|
|
|
|
# setup systemd to boot to the right runlevel
|
|
echo -n "Setting default runlevel to multiuser text mode"
|
|
rm -f /etc/systemd/system/default.target
|
|
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
|
echo .
|
|
|
|
%end
|
|
|