1.5-rolling: v1
Pre-release
Pre-release
Initial release of working image. After writing to an sdcard, please create a second partition formated ext4 with the label persistence and a file named persistence.conf with contents "/ union"
This is a quick snippet that will get you a working image:
########################
### Don't forget to fill this in ###
TARGET=/dev/sdX # Fill this in with your sdcard block device
cat vyos-r5s.img.gz | gunzip -c - |dd of=$TARGET bs=4M status=progress
printf "fix\n" | parted ---pretend-input-tty $TARGET print
parted --script $TARGET mkpart primary 3GB 100%
mkfs.ext4 -L persistence ${TARGET}2
mount ${TARGET}2 /mnt
echo "/ union" > /mnt/persistence.conf
umount /mnt
eject $TARGET