According to http://processors.wiki.ti.com/index.php/Sitara_Linux_Training:_uboot_linux_debug_with_ccsv5,
during SPL debug,
In function board_init_r() (the filename is \board-support\u-boot-2013.01.01-psp06.00.00.00\common\spl\spl.c),
the sub function called is boot_device = spl_boot_device();
the value of boot_device is 0,
after the step,program jumps to
inline void hang(void)
{
puts("### ERROR ### Please RESET the board ###\n");
for (;;)
;
}
in fact ,i boot mode is set as UART0.
I think boot_params is not correctly set,where is set for params ?
and where does source code of save_boot_params function locate ?