blob: baf197c48515fa1d0949fa53dd3c5f8ac909d4f5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jagan Teki59ea6182017-09-12 17:15:47 +05302/*
3 * Copyright (C) 2017 Amarula Solutions
Jagan Teki59ea6182017-09-12 17:15:47 +05304 */
5
6#include <common.h>
Jagan Teki99016632017-09-27 23:03:13 +05307
8#ifndef CONFIG_TPL_BUILD
Jagan Tekiec55f422018-02-14 21:26:22 +05309
Jagan Teki99016632017-09-27 23:03:13 +053010int spl_start_uboot(void)
11{
12 /* break into full u-boot on 'c' */
13 if (serial_tstc() && serial_getc() == 'c')
14 return 1;
15
16 return 0;
17}
18#endif