diff options
author | Hannes Petermaier | 2015-03-17 15:31:21 +0100 |
---|---|---|
committer | Tom Rini | 2015-03-17 10:55:07 -0400 |
commit | e52e9cc77f98f47b1fbbb9081df517ffea2389d7 (patch) | |
tree | fe9e5441a499b336be6def3022963647abc903e8 /board/BuR | |
parent | 323aaaa1e364bf8426a9c8fd5158fe2d155ae7b9 (diff) |
board/BuR/common: use SYS_CONSOLE_OVERWRITE
We don't want that CONSOLE is redirected to LCD upon init, we rather prefer
that console is still on the serial line.
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
Diffstat (limited to 'board/BuR')
-rw-r--r-- | board/BuR/common/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index 18e1520b383..5ff8a7e0ae9 100644 --- a/board/BuR/common/common.c +++ b/board/BuR/common/common.c @@ -641,3 +641,7 @@ int board_mmc_init(bd_t *bis) return omap_mmc_init(1, 0, 0, -1, -1); } #endif +int overwrite_console(void) +{ + return 1; +} |