xref: /OK3568_Linux_fs/u-boot/include/configs/evb_rk1808.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /* SPDX-License-Identifier:     GPL-2.0+ */
2 /*
3  * (C) Copyright 2018 Rockchip Electronics Co., Ltd
4  *
5  */
6 
7 #ifndef __EVB_RK1808_H
8 #define __EVB_RK1808_H
9 
10 #include <configs/rk1808_common.h>
11 
12 #define ROCKCHIP_DEVICE_SETTINGS \
13 			"stdout=serial,vidconsole\0" \
14 			"stderr=serial,vidconsole\0"
15 
16 #define CONFIG_SYS_MMC_ENV_DEV		0
17 
18 #ifndef CONFIG_SPL_BUILD
19 #undef CONFIG_BOOTCOMMAND
20 #define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
21 #endif
22 
23 #endif
24