1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-08 06:46:13 +02:00
build/pkg/release-alix/install.sh
David Oberhollenzer c16ff53c14 Remove overlay partition setup from release shell scripts
The initial ram disk does that for us (with the propper permissions
in the case of Qemu).

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-10-11 19:02:11 +02:00

58 lines
982 B
Bash
Executable file

#!/bin/sh
set -u -e
CONFIRM="Yes, I am"
DEVICE=$1
MOUNTED=0
function do_cleanup() {
[ $MOUNTED -ne 0 ] && umount /tmp/mnt.$$
rmdir /tmp/mnt.$$
}
trap do_cleanup ERR INT
cd `dirname $0`
echo "Are you *really* sure to use $DEVICE?"
echo "If so, type \"$CONFIRM\""
read input
[ "x$input" != "x$CONFIRM" ] && exit 1
[ ! -b $DEVICE ] && {
echo "Error, $DEVICE is not a block device"
exit 1
}
count=$(grep -c -e "^$DEVICE" /proc/mounts || true)
[ $count -ne 0 ] && {
echo "Error, $DEVICE is mounted"
exit 1
}
dd if=/dev/zero of=$DEVICE bs=512 count=1
parted --script $DEVICE \
"mklabel msdos" \
"mkpart primary fat32 1M 256M" \
"mkpart primary btrfs 256M 100%" \
"set 1 boot on"
mkfs.vfat ${DEVICE}1
mkfs.btrfs -f ${DEVICE}2
mkdir /tmp/mnt.$$
mount -t vfat ${DEVICE}1 /tmp/mnt.$$
MOUNTED=1
syslinux --install ${DEVICE}1
cp syslinux.cfg /tmp/mnt.$$/syslinux.cfg
cp -r VERSIONDIR /tmp/mnt.$$/
umount /tmp/mnt.$$
MOUNTED=0
rmdir /tmp/mnt.$$
dd if=mbr.bin of=$DEVICE