Hi,
I have create custom board based on RIoTBoard. And I am trying to boot linux on it.
Since I have different DDR3 configuration I had to make custom u-boot and Image.
U-boot is up and running nicely.
My card have 2 partitions:
1st fat
2nd ext3
Kernel is from: git clone git://github.com/embest-tech/linux-imx.git -b embest_imx_3.0.35_4.0.0
when I list files (ext2ls mmc0:2) I get root tree catalog
Than I load my custom uImage
ext2load mmc 0:2 0x80800000 /boot/uImage
and run it:
bootm 0x80800000
Kernel is booting (resolve already few minor errors) and stuck when trying to load root file system (log attached)
I thought the reason might be no support for ext3 in Kernel but there is ext3 support build and compile to kernel.
Any hints or reasons? Might be that I have been loading uImage to RAM and that's why it doesn't see filesystem on card? I can provide more specific data/logs if any needed