12345678910111213141516171819202122232425262728293031 |
- #include <common.h>
- #include <bootstage.h>
- void hang(void)
- {
- #if !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
- defined(CONFIG_SPL_SERIAL_SUPPORT))
- puts("### ERROR ### Please RESET the board ###\n");
- #endif
- bootstage_error(BOOTSTAGE_ID_NEED_RESET);
- for (;;)
- ;
- }
|