diff options
Diffstat (limited to 'board/ti/am335x/board.c')
| -rw-r--r-- | board/ti/am335x/board.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index fb98df0f8..fdbe26cde 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -273,6 +273,15 @@ static struct emif_regs ddr3_evm_emif_reg_data = {  	.emif_ddr_phy_ctlr_1 = MT41J512M8RH125_EMIF_READ_LATENCY |  				PHY_EN_DYN_PWRDN,  }; + +#ifdef CONFIG_SPL_OS_BOOT +int spl_start_uboot(void) +{ +	/* break into full u-boot on 'c' */ +	return (serial_tstc() && serial_getc() == 'c'); +} +#endif +  #endif  /* |