rv1126: configs: do reset for bootcmd if thunder-boot version

We made a deal: Not allow U-Boot to bring up thunder-boot kernel.

Because the thunder-boot feature may require special memory layout
or other appointments, U-Boot can't handle all that. Let's go back
to SPL to bring up kernel.

Note: bootcmd is only called in normal boot sequence, that means
we allow user to boot what they want in U-Boot shell mode.

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I8a68af3fbd441ab7e30ad310640eaf3ee5f24525
This commit is contained in:
Joseph Chen 2020-08-31 16:00:30 +08:00 committed by Jianhong Chen
parent d38748a7d2
commit 8259a58e4a
1 changed files with 15 additions and 0 deletions

View File

@ -21,7 +21,22 @@
#ifndef CONFIG_SPL_BUILD
#undef CONFIG_BOOTCOMMAND
/*
* We made a deal: Not allow U-Boot to bring up thunder-boot kernel.
*
* Because the thunder-boot feature may require special memory layout
* or other appointments, U-Boot can't handle all that. Let's go back
* to SPL to bring up kernel.
*
* Note: bootcmd is only called in normal boot sequence, that means
* we allow user to boot what they want in U-Boot shell mode.
*/
#ifdef CONFIG_SPL_KERNEL_BOOT
#define CONFIG_BOOTCOMMAND "reset"
#else
#define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
#endif
#endif /* !CONFIG_SPL_BUILD */
#endif