summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Chauvet <kwizart@gmail.com>2013-08-23 18:20:38 +0200
committerNicolas Chauvet <kwizart@gmail.com>2014-03-06 22:28:54 +0100
commit99c513ba51f902a37276445cb2d377a684cfe3bc (patch)
tree6629c14e39acee1b0daccfc01f7ab107a13dffe9
parent3cfde69cd0ee06f70b8b06fbd77538e6d78cd3d1 (diff)
downloadspin-kickstarts-f19.tar.gz
spin-kickstarts-f19.tar.xz
spin-kickstarts-f19.zip
[ARM][TEGRA][PAZ00] Add Final Image for F19 on AC100f19
-rw-r--r--fedora-arm-ac100.ks105
1 files changed, 105 insertions, 0 deletions
diff --git a/fedora-arm-ac100.ks b/fedora-arm-ac100.ks
new file mode 100644
index 0000000..6e0da4d
--- /dev/null
+++ b/fedora-arm-ac100.ks
@@ -0,0 +1,105 @@
+# Customizations to fit in the Toshiba AC100
+# Maintained by the Nicolas Chauvet:
+# http://fedoraproject.org/wiki/Architectures/ARM
+# mailto:kwizart@gmail.com
+%include fedora-lxde-packages.ks
+
+lang en_US.UTF-8
+#keyboard us
+auth --useshadow --enablemd5
+selinux --enforcing
+firewall --enabled --service=mdns,ssh
+
+bootloader --location=none
+part /boot --size=256 --fstype ext4 --label=bootfs
+part / --grow --size=3500 --fstype ext4 --label=rootfs
+
+# make sure that initial-setup runs and lets us do all the configuration bits
+firstboot --reconfig
+
+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
+repo --name=fedora-ac100 --baseurl=http://repos.fedorapeople.org/repos/kwizart/ac100/fedora-19/armhfp/ --includepkgs=kernel,libdrm,drm-utils,uboot-tools,uboot-paz00
+repo --name=xorg-tegra --baseurl=http://repos.fedorapeople.org/repos/jkastner/xorg-x11-drv-opentegra/fedora-19/armhfp/
+
+%packages
+@core
+@standard
+@base-x
+@fonts
+@input-methods
+@multimedia
+@printing
+
+kernel
+
+chrony
+arm-boot-config
+initial-setup
+gdisk
+
+fedora-release
+fedora-release-notes
+
+system-config-date
+system-config-keyboard
+system-config-language
+gnome-power-manager
+
+# Install ac100 specific packages
+ac100-hacks
+uboot-paz00
+xorg-x11-drv-opentegra
+xorg-x11-drv-fbdev
+xorg-x11-drv-modesetting
+xorg-x11-drv-evdev
+
+# Needed by bootloader
+cbootimage
+parted
+
+# Uneeded on AC100
+-dvd+rw-tools
+-gnomebaker
+-pcmciautils
+-rng-tools
+-transmission-cli
+-transmission-gtk
+-transmission-common
+-transmission
+-xorg-x11-drv-ati
+-xorg-x11-drv-qxl
+-xorg-x11-drv-omap
+
+# Experimental things
+f2fs-tools
+crtools
+
+#Usual things on desktop
+gnash-plugin
+
+
+%end
+
+%post
+# setup systemd to boot to the right runlevel
+echo -n "Setting default runlevel to multiuser graphical mode"
+rm -f /etc/systemd/system/default.target
+ln -s /lib/systemd/system/graphical.target /etc/systemd/system/default.target
+echo .
+
+echo -n "Enabling initial-setup text mode on startup"
+ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
+echo .
+
+#from fedora-arm-base.ks
+/usr/sbin/a-b-c
+
+#Exclude kernel from fedora-release repos
+sed -i -e "s/\[updates\]/\[updates\]\nexclude=kernel/1" /etc/yum.repos.d/fedora-updates.repo
+%end
+