fedora-kickstarts/fedora-arm-minimal.ks
Peter Robinson 2ccc0a538b Move back to ext4 now that u-boot 2016.11 RC1 fixes ext4. The support for dealing
with the extra changes and features in ext4 has been resolved so we can now move
back to ext4 on boot partition.
2016-10-19 11:23:55 +01:00

28 lines
515 B
Plaintext

%include fedora-arm-base.ks
part /boot --size=512 --fstype ext4
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