2013-05-28 06:44:45 +00:00
|
|
|
lang en_US.UTF-8
|
|
|
|
#keyboard us
|
2015-06-21 16:38:20 +00:00
|
|
|
auth --useshadow --passalgo=sha512
|
2013-05-28 06:44:45 +00:00
|
|
|
selinux --enforcing
|
|
|
|
firewall --enabled --service=mdns,ssh
|
|
|
|
|
2013-08-27 04:10:33 +00:00
|
|
|
# configure extlinux bootloader
|
2013-11-25 04:13:52 +00:00
|
|
|
bootloader extlinux
|
2013-08-27 04:10:33 +00:00
|
|
|
|
2015-10-21 08:47:44 +00:00
|
|
|
part /boot --size=512 --fstype ext4
|
2014-05-06 17:31:06 +00:00
|
|
|
part swap --size=512 --fstype swap
|
2016-03-01 03:00:21 +00:00
|
|
|
part / --size=3584 --fstype ext4
|
2014-05-06 17:31:06 +00:00
|
|
|
|
2013-06-01 02:57:20 +00:00
|
|
|
# make sure that initial-setup runs and lets us do all the configuration bits
|
|
|
|
firstboot --reconfig
|
|
|
|
|
2016-01-14 00:24:43 +00:00
|
|
|
services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd,initial-setup --disabled=network
|
2013-05-28 06:44:45 +00:00
|
|
|
|
2013-06-29 13:05:30 +00:00
|
|
|
%include fedora-repo.ks
|
2013-05-28 06:44:45 +00:00
|
|
|
|
|
|
|
%packages
|
|
|
|
@core
|
|
|
|
@standard
|
|
|
|
@hardware-support
|
|
|
|
@dial-up
|
|
|
|
|
|
|
|
kernel
|
2013-10-08 03:21:50 +00:00
|
|
|
dracut-config-generic
|
2016-05-30 15:08:58 +00:00
|
|
|
# install tools needed to manage and boot arm systems
|
|
|
|
@arm-tools
|
2013-10-08 03:21:50 +00:00
|
|
|
|
2013-05-28 06:44:45 +00:00
|
|
|
chrony
|
2013-08-27 04:10:33 +00:00
|
|
|
extlinux-bootloader
|
2013-05-28 06:44:45 +00:00
|
|
|
initial-setup
|
2014-01-08 22:23:23 +00:00
|
|
|
initial-setup-gui
|
2013-08-01 00:45:24 +00:00
|
|
|
#lets resize / on first boot
|
2014-07-16 09:28:48 +00:00
|
|
|
# dracut-modules-growroot
|
2013-06-08 13:58:01 +00:00
|
|
|
|
2013-10-17 02:58:04 +00:00
|
|
|
# remove this in %post
|
|
|
|
dracut-config-generic
|
|
|
|
|
2013-06-08 13:58:01 +00:00
|
|
|
|
2016-02-29 20:21:30 +00:00
|
|
|
# make sure all the locales are available for inital0-setup and anaconda to work
|
|
|
|
glibc-all-langpacks
|
2013-05-28 06:44:45 +00:00
|
|
|
%end
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
2013-12-12 10:15:28 +00:00
|
|
|
# work around for poor key import UI in PackageKit
|
|
|
|
rm -f /var/lib/rpm/__db*
|
|
|
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
|
|
basearch=armhfp
|
|
|
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
2015-01-27 20:24:34 +00:00
|
|
|
echo "Packages within this ARM disk image"
|
2013-12-12 10:15:28 +00:00
|
|
|
rpm -qa
|
|
|
|
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
|
|
rm -f /var/lib/rpm/__db*
|
|
|
|
|
2016-03-05 17:44:00 +00:00
|
|
|
# remove random seed, the newly installed instance should make it's own
|
|
|
|
rm -f /var/lib/systemd/random-seed
|
|
|
|
|
2013-05-28 06:44:45 +00:00
|
|
|
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
|
|
|
# default of having /tmp on tmpfs.
|
|
|
|
echo "Disabling tmpfs for /tmp."
|
|
|
|
systemctl mask tmp.mount
|
|
|
|
|
2016-02-16 18:31:07 +00:00
|
|
|
dnf -y remove dracut-config-generic
|
2013-10-17 02:58:04 +00:00
|
|
|
|
2013-05-28 06:44:45 +00:00
|
|
|
%end
|
|
|
|
|