diff options
author | Derald D. Woods <woods.technical@gmail.com> | 2017-12-29 10:37:32 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-19 15:49:28 -0500 |
commit | 4b37928d3577e1b540b12d709e9b551fee3ccbd6 (patch) | |
tree | 094f7a1369e8d6494f445b04b8eac9a15088a805 /board/ti | |
parent | 3ff0d8018105614a466b10265e6dff99de958135 (diff) | |
download | u-boot-4b37928d3577e1b540b12d709e9b551fee3ccbd6.tar.gz |
ARM: dts: omap3-beagle{-xm}: Enable DM and devicetree for BeagleBoard
This commit updates the configuration files needed to support OF_CONTROL
on the OMAP3 BeagleBoard(s).
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/beagle/beagle.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index bdf84b0be8..d8402f2675 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -103,6 +103,17 @@ int board_init(void) return 0; } +#if defined(CONFIG_SPL_OS_BOOT) +int spl_start_uboot(void) +{ + /* break into full u-boot on 'c' */ + if (serial_tstc() && serial_getc() == 'c') + return 1; + + return 0; +} +#endif /* CONFIG_SPL_OS_BOOT */ + /* * Routine: get_board_revision * Description: Detect if we are running on a Beagle revision Ax/Bx, |