1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com> 4 */ 5 6 #ifndef __CONFIG_H 7 #define __CONFIG_H 8 9 #include <configs/x86-common.h> 10 11 #define CONFIG_SYS_MONITOR_LEN (2 << 20) 12 13 #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \ 14 "stdout=vidconsole,serial\0" \ 15 "stderr=vidconsole,serial\0" 16 17 /* Environment configuration */ 18 #define CONFIG_ENV_SECT_SIZE 0x10000 19 #define CONFIG_ENV_OFFSET 0x005f0000 20 21 #endif /* __CONFIG_H */ 22