arch-maride-flavour/steps/20-partition.step

16 lines
332 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
echo "~> Setting up $blockdevice with:"
echo " * 300M EFI (FAT32) partition"
echo " * <full> crypted (LUKS) root (EXT4) partition"
2017-07-30 22:20:13 +00:00
echo -e "g\nn\n1\n2048\n+300M\nn\n2\n\n\np\nw" | fdisk $blockdevice
if [ "$?" -eq 0 ]; then
echo "~> Seems to have worked. Yay!"
amf_return=0
else
echo "~> Failed. :("
amf_return=1
fi