Jagan Teki | d55af07 | 2017-09-12 17:15:47 +0530 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2017 Amarula Solutions | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #include <common.h> | ||||
Jagan Teki | 5d94ebe | 2017-09-27 23:03:13 +0530 | [diff] [blame] | 8 | |
9 | #ifndef CONFIG_TPL_BUILD | ||||
10 | #include <spl.h> | ||||
11 | |||||
12 | int spl_start_uboot(void) | ||||
13 | { | ||||
14 | /* break into full u-boot on 'c' */ | ||||
15 | if (serial_tstc() && serial_getc() == 'c') | ||||
16 | return 1; | ||||
17 | |||||
18 | return 0; | ||||
19 | } | ||||
20 | #endif |