From 763d6892edb35d629caf43b1e7fa8dc0c261ab17 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 31 Jul 2013 18:22:09 -0500 Subject: [PATCH] set partition sizes to fit on a 4gb sd card except for mate which is too big --- fedora-arm-mate-vfat.ks | 2 ++ fedora-arm-mate.ks | 2 ++ fedora-arm-partitioning.ks | 2 +- fedora-arm-vfat-partitioning.ks | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/fedora-arm-mate-vfat.ks b/fedora-arm-mate-vfat.ks index 6009ae5..33dc05c 100644 --- a/fedora-arm-mate-vfat.ks +++ b/fedora-arm-mate-vfat.ks @@ -3,6 +3,8 @@ %include fedora-mate-packages.ks %include fedora-arm-vfat-partitioning.ks +part / --grow --size=4000 --fstype ext4 + %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 diff --git a/fedora-arm-mate.ks b/fedora-arm-mate.ks index 7b26b98..74661f5 100644 --- a/fedora-arm-mate.ks +++ b/fedora-arm-mate.ks @@ -3,6 +3,8 @@ %include fedora-mate-packages.ks %include fedora-arm-partitioning.ks +part / --grow --size=4000 --fstype ext4 + %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 diff --git a/fedora-arm-partitioning.ks b/fedora-arm-partitioning.ks index 4fc393d..9705cae 100644 --- a/fedora-arm-partitioning.ks +++ b/fedora-arm-partitioning.ks @@ -1,5 +1,5 @@ bootloader --location=none part /boot --size=512 --fstype ext3 part swap --size=512 --fstype swap -part / --grow --size=6500 --fstype ext4 +part / --grow --size=3000 --fstype ext4 diff --git a/fedora-arm-vfat-partitioning.ks b/fedora-arm-vfat-partitioning.ks index a448344..7b6bc8f 100644 --- a/fedora-arm-vfat-partitioning.ks +++ b/fedora-arm-vfat-partitioning.ks @@ -1,5 +1,5 @@ bootloader --location=none part /boot/uboot --size=20 --fstype vfat part swap --size=512 --fstype swap -part / --grow --size=6500 --fstype ext4 +part / --grow --size=3400 --fstype ext4