blob: 7985671fbd708a12bc0ea01d42729d77a6aeff1d [file] [log] [blame]
Jagan Tekid55af072017-09-12 17:15:47 +05301/*
2 * Copyright (C) 2017 Amarula Solutions
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Jagan Teki5d94ebe2017-09-27 23:03:13 +05308
9#ifndef CONFIG_TPL_BUILD
10#include <spl.h>
11
12int 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