summaryrefslogtreecommitdiffstats
path: root/fedora-arm-base.ks
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2013-05-28 01:44:45 -0500
committerDennis Gilmore <dennis@ausil.us>2013-05-28 01:44:45 -0500
commit8c2c5c5e19f94e1b5861962b91bb75aff21966bf (patch)
tree6e76fb0b47ccb59d93421b6825886b2f1285808a /fedora-arm-base.ks
parent282c3621ba001d0c863040573a9522e95663a202 (diff)
downloadspin-kickstarts-master.tar.gz
spin-kickstarts-master.tar.xz
spin-kickstarts-master.zip
add arm kickstartsHEADmaster
TODO: add other desktop spins
Diffstat (limited to 'fedora-arm-base.ks')
-rw-r--r--fedora-arm-base.ks42
1 files changed, 42 insertions, 0 deletions
diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks
new file mode 100644
index 0000000..86cea49
--- /dev/null
+++ b/fedora-arm-base.ks
@@ -0,0 +1,42 @@
+lang en_US.UTF-8
+#keyboard us
+auth --useshadow --enablemd5
+selinux --enforcing
+firewall --enabled --service=mdns,ssh
+
+bootloader --location=none
+part /boot --size=512 --fstype ext3
+part swap --size=512 --fstype swap
+part / --grow --size=6500 --fstype ext4
+services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=network
+
+#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
+repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
+repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
+#repo --name=updates-testing --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-f$releasever&arch=$basearch
+
+%packages
+@core
+@standard
+@hardware-support
+@dial-up
+
+kernel
+kernel-lpae
+kernel-tegra
+
+chrony
+arm-boot-config
+initial-setup
+%end
+
+%post
+
+# 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
+
+/usr/sbin/a-b-c
+%end
+