Other Parts Discussed in Thread: AM3352
Hi,
I'm working on a custom board designed with AM3359 which is made to run Linux Kernel with Uboot.
Uboot & MLO booting over UART, then receiving the zImage and dtb to DDR memory. Linux & dtb generated by following the steps from TI SDK links. Using TI TINY FS (due to image size requirements).
Following is the command issued to boot kernel from uboot:
run bootargs; //having console, rw only in text
bootz 0x80000000 - 0x8f000000
0x8000_0000 - contains zImage with rfs
0x8f00_0000 - contains dtb
Able to see the kernel booting prints and at the end it's observed that Kernel panic with error as no root rfs found.
Please help. Thanks