How to create a bootable #AlpineLinux SD-card for VisionFive2 #RISCV:
1) Partition the card. In this example I use /dev/sde. WARNING: Make sure you have the right device.
doas parted /dev/sde --script mklabel gpt \
mkpart primary 2MiB 4MiB set 1 bios_grub on \
mkpart primary 4MiB 6MiB \
mkpart primary 6MiB 100% set 3 boot on