aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 398d593a828f9d8a950fea6af7cb7d847a77e332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
if [ $(id -u) -ne 0 ]
    then echo "Please run as root"
    exit
fi
if [ ! -e installed ]; then

SCRIPTPATH=$(dirname "$(readlink -f "$0")")
if [ -z $1 ]; then
    echo "Which drive?"
    read DRIVE
else
    export DRIVE=$1
fi
export BASE=$(basename $DRIVE)
export PART="/dev/$(basename $(echo /sys/class/block/$BASE/$BASE* | \
xargs -n1 echo | sed 1q | rev | cut -c 2- | rev ))"
    # List all partitions of device, get first one, remove last char.
sudo umount $DRIVE*
fdisk $DRIVE <<EOF
    g
    n
    1
     
    +512M
    t
    1
    n
    2
     
    +20G
    w
EOF

yes | mkfs.vfat ${PART}1
yes | mkfs.ext4 ${PART}2

mount ${PART}2 /mnt
mkdir /mnt/efi
mount ${PART}1 /mnt/efi
pacstrap /mnt base
genfstab -U /mnt >> /mnt/etc/fstab
cd $SCRIPTPATH/..
cp -r dotfiles /mnt
touch dotfiles/installed
fi
#echo "arch-chroot into the new system and run dotfiles/build.sh"
arch-chroot /mnt << EOF
    cd dotfiles
    sh build.sh
EOF
echo "DONE!"