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