break out partitioning for arm images

setup kickstarts for partitioning with vfat for use on systes like OMAP
add SoaS for ARM
This commit is contained in:
Dennis Gilmore 2013-06-07 12:13:44 -05:00
parent 455ebf7e79
commit 09b9d714a5
12 changed files with 83 additions and 7 deletions

View File

@ -4,10 +4,17 @@ fedoradir = $(pkgdatadir)/
fedora_DATA = \
fedora-aos.ks \
fedora-arm-base.ks \
fedora-arm-minimal.ks \
fedora-arm-xfce.ks \
fedora-arm-lxde.ks \
fedora-arm-lxde-vfat.ks \
fedora-arm-minimal.ks \
fedora-arm-minimal-vfat.ks \
fedora-arm-partitioning.ks \
fedora-arm-soas.ks \
fedora-arm-soas-vfat.ks \
fedora-arm-vfat-partitioning.ks \
fedora-arm-xbase.ks \
fedora-arm-xfce.ks \
fedora-arm-xfce-vfat.ks \
fedora-install-fedora.ks \
fedora-live-base.ks \
fedora-live-minimization.ks \

View File

@ -7,10 +7,6 @@ firewall --enabled --service=mdns,ssh
# make sure that initial-setup runs and lets us do all the configuration bits
firstboot --reconfig
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

11
fedora-arm-lxde-vfat.ks Normal file
View File

@ -0,0 +1,11 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-lxde-packages.ks
%include fedora-arm-vfat-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
echo .
%end

View File

@ -1,6 +1,7 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-lxde-packages.ks
%include fedora-arm-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"

View File

@ -0,0 +1,17 @@
%include fedora-arm-base.ks
%include fedora-arm-vfat-partitioning.ks
%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 .
echo -n "Enabling initial-setup text mode on startup"
ln -s /usr/lib/systemd/system/initial-setup-text.service /etc/systemd/system/multi-user.target.wants/initial-setup-text.service
echo .
%end

View File

@ -1,5 +1,5 @@
%include fedora-arm-base.ks
%include fedora-arm-partitioning.ks
%post

View File

@ -0,0 +1,5 @@
bootloader --location=none
part /boot --size=512 --fstype ext3
part swap --size=512 --fstype swap
part / --grow --size=6500 --fstype ext4

11
fedora-arm-soas-vfat.ks Normal file
View File

@ -0,0 +1,11 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-soas-packages.ks
%include fedora-arm-vfat-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
echo .
%end

11
fedora-arm-soas.ks Normal file
View File

@ -0,0 +1,11 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-soas-packages.ks
%include fedora-arm-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
echo .
%end

View File

@ -0,0 +1,5 @@
bootloader --location=none
part /boot/uboot --size=20 --fstype vfat
part swap --size=512 --fstype swap
part / --grow --size=6500 --fstype ext4

11
fedora-arm-xfce-vfat.ks Normal file
View File

@ -0,0 +1,11 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-xfce-packages.ks
%include fedora-arm-vfat-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
echo .
%end

View File

@ -1,6 +1,7 @@
%include fedora-arm-base.ks
%include fedora-arm-xbase.ks
%include fedora-xfce-packages.ks
%include fedora-arm-partitioning.ks
%post
echo -n "Enabling initial-setup gui mode on startup"