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