Releases: darkdragn/vyos-r5s
Releases · darkdragn/vyos-r5s
1.5-rolling: v2
This release removes the udev rules to give access to the 1GbE wan interface.
I rebooted a few times to see if they would be consistently read in the same order, and they were... But the order is weird:
eth0 = lan2
eth1 = wan
eth2 = lan1
I also added a 1Gb persistence partition to the image so you don't have to do that part anymore. You can move the partition boundary to fill your sdcard and run resize2fs to expand the fs if you want.
1.5-rolling: v1
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