I am trying to install Ambian on to the BananaPi-M7 to eMMC using option 6. there is no option for NVME / M2 SSD.
I had a failed install as the uSDCard image was 256GB larger than the eMMC, so it balked. I tried a 128GB uSDCard, followed by a 64GB uSDCard, but got the same error each time even on the 64GB one. I seem to have two partitions on the eMMC, mmcblk0boot0, and mmcblk0boot2 now,.
I am not sure if they were on the boards eMMC originally or what the boot sequence for the
Hi, there is a simple way to install armbian to NVME SSD.
1, Boot armbian from sd card
2, Burn u-boot to emmc:
You can find u-boot firmware at
$ ls /usr/lib/linux-u-boot-*/
idbloader.img rkspi_loader.img u-boot.itb
Use dd command to flash u-boot:
dd if=./idbloader.img of=/dev/mmcblk0 seek=64 conv=notrunc status=none
dd if=./u-boot.itb of=/dev/mmcblk0 seek=16384 conv=notrunc status=none
3, Burn armbian image to NVME SSD, you can use dd in th