kbradway@divercety.com , 09-07-2016, 09:35 AM
Yes I knew it is not booting from uBoot. Here is a clue to the issue:
The 3.10.17 kernel that boots from uBoot shows this at bootup
"console=ttymxc0,115200 ip=dhcp root=/dev/mmcblk0p1 rootwait rw root=/dev/mmcblk0p1 rootwait rw"
Looking at be printenv it shows
bootargs "console=ttymxc0,115200 ip=dhcp root=/dev/mmcblk0p1 rootwait rw mmcinfo ext2load mmc 0:1 0x10800000: uImage"
bootargs_fdt "ext2load mmc 0:1 0x12000000 imx6q-darde.dtb bootm 0x10800000 - 0x12000000"
boot_cmd "bootargs bootargs_fdt"
So I make the 3.17 kernel CONFIG_CMDLINE look like the following:
"console=ttymxc0,115200 ip=dhcp root=/dev/mmcblk0p1 rootwait rw root=/dev/mmcblk0p1 rootwait rw"
But when the kernel boots it only shows one root=xxx as in
"console=ttymxc0,115200 ip=dhcp root=/dev/mmcblk0p1 rootwait rw"
The second root= is missing.
That I am assuming is my dtb load??
So I can not seem to create the exact build line from uBoot.