I’ve installed Debian on emmc and it works fine, but I also installed Ubuntu on NVMe disk and cannot boot into it. Could anyone explain how to change bott settings and to choose desired device to boot from?
lzzhzh
December 4, 2025, 4:25am
2
QSPL boot sequence: SD/TF->eMMC->NVME.
Mr.T
Got my boards today in the mail :-).
Lets the tinkering begin.
Can you verify the BootROM is same as JH-7110 ?
Directions for copying to file on USB storage from U-Boot:
save usb 0:1 2a000000 starfive_jh7110_bootrom.bin 0x8000
And when able on host computer provide md5sum sha256sum whatever is convenient. Thanks.
You should probably make it clear that this command will only write to pre-existing filesystems on the USB devices that U-boot has compiled in support to write.
save <interface> <dev[:part]> <addr> <filename> bytes [pos]
- Save binary file 'filename' to partition 'part' on device
type 'interface' instance 'dev' from addr 'addr' in memory.
'bytes' gives the size to save in bytes and is mandatory.
'pos' gives the file byte position to start writing to.
If 'pos' is 0 o…