2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-08-01 00:46:19 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2016 Rockchip Electronics Co., Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2020-01-23 14:12:21 +00:00
|
|
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
2020-03-02 07:57:55 +00:00
|
|
|
"stdin=serial,usbkbd\0" \
|
2020-01-23 14:12:21 +00:00
|
|
|
"stdout=serial,vidconsole\0" \
|
|
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
|
2016-08-01 00:46:19 +00:00
|
|
|
#include <configs/rk3288_common.h>
|
|
|
|
|
2016-09-09 13:44:50 +00:00
|
|
|
#undef BOOT_TARGET_DEVICES
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
2019-11-15 21:07:24 +00:00
|
|
|
func(MMC, mmc, 0) \
|
2017-04-01 06:46:52 +00:00
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(USB, usb, 0) \
|
|
|
|
func(PXE, pxe, na) \
|
|
|
|
func(DHCP, dchp, na)
|
2016-09-09 13:44:50 +00:00
|
|
|
|
2017-03-15 09:28:43 +00:00
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 1
|
2016-11-18 07:54:25 +00:00
|
|
|
|
2016-08-01 00:46:19 +00:00
|
|
|
#endif
|