[N9H30 Non-OS] Fix NAND booting stop when using uboot
Posted: 08 Apr 2020, 16:16
check env.txt for NAND flash.
0x00200000 is start address
0x00100000 is app binary size
Code: Select all
// Wrong
bootdelay=0
bootcmd=nand read 0x0 0x00200000 0x00100000 \\;go 0x0
Code: Select all
// Right
bootdelay=0
bootcmd=nand read 0x0 0x00200000 0x00700000\;go 0x0
0x00100000 is app binary size