27 lines
539 B
C
27 lines
539 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* Copyright (c) 2020 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#ifndef __CONFIGS_RK3528_EVB_H
|
|
#define __CONFIGS_RK3528_EVB_H
|
|
|
|
#include <configs/rk3528_common.h>
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
|
|
|
#undef ROCKCHIP_DEVICE_SETTINGS
|
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
|
"stdin=serial,usbkbd\0" \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 0
|
|
|
|
#undef CONFIG_BOOTCOMMAND
|
|
#define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
|
|
#endif
|
|
|
|
#endif /* __CONFIGS_RK3528_EVB_H */
|