--- cdrom.image/sme10/Packages/base/sme-kickstart.cfg 2021/03/18 22:20:46 1.9 +++ cdrom.image/sme10/Packages/base/sme-kickstart.cfg 2021/04/07 21:31:28 1.10 @@ -23,8 +23,8 @@ eula --agreed # Add netinstall repos -repo --name=smeos --baseurl=http://mirror.canada.pialasse.com/releases/testing/10/smeos/x86_64/ -repo --name=smeupdates --baseurl=http://mirror.canada.pialasse.com/releases/testing/10/smeupdates/x86_64/ +repo --name=smeos --baseurl=https://mirror.koozali.org/releases/testing/10/smeos/x86_64/ +repo --name=smeupdates --baseurl=https://mirror.koozali.org/releases/testing/10/smeupdates/x86_64/ # Packages to install %packages @@ -42,6 +42,7 @@ repo --name=smeupdates --baseurl=http:// # Read command line arguments if grep nolvm "/proc/cmdline" ; then NOLVM=true ; fi if grep noraid "/proc/cmdline" ; then NORAID=true ; fi +if grep noxfs "/proc/cmdline" ; then FSTYPE="ext4" ; else FSTYPE="xfs" ; fi echo "Command line arguments:" cat /proc/cmdline @@ -152,19 +153,19 @@ EOF fi # Create boot partition - printf "part /boot --fstype=xfs --size=500 --label=BOOT --ondisk=%s\n" "${DRIVES[0]}" >> /tmp/part-include + printf "part /boot --fstype=%s --size=500 --label=BOOT --ondisk=%s\n" "$FSTYPE" "${DRIVES[0]}" >> /tmp/part-include # Default to LVM unless specified at command line if [ $NOLVM ] ; then cat >> /tmp/part-include <> /tmp/part-include <> /tmp/part-include + printf "raid /boot --fstype=%s --level=1 --spares=0 --device=md0 %s\n" "$FSTYPE" "$BOOTDEVS" >> /tmp/part-include # Default to LVM unless specified if [ $NOLVM ] ; then cat >> /tmp/part-include <> /tmp/part-include <