xref: /rk3399_rockchip-uboot/include/configs/evb_rk3229.h (revision 2433663c664fe89961507844c5545fc1fcd9307a)
1 /*
2  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef __RK322X_CONFIG_H
8 #define __RK322X_CONFIG_H
9 
10 #include <configs/rk322x_common.h>
11 
12 #define ROCKCHIP_DEVICE_SETTINGS \
13 		"stdout=serial,vidconsole\0" \
14 		"stderr=serial,vidconsole\0"
15 
16 /* Store env in emmc */
17 #define CONFIG_SYS_MMC_ENV_DEV          0
18 #define CONFIG_SYS_MMC_ENV_PART         0
19 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
20 
21 #ifndef CONFIG_SPL_BUILD
22 
23 #undef CONFIG_BOOTCOMMAND
24 #define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
25 #endif
26 
27 #endif
28