blob: 59fad4c15dba341dada3ed8ba9a36abf2ec07cc8 [file] [log] [blame]
Bin Meng32151d42018-06-12 08:36:18 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 */
5
6/*
7 * board/config.h - configuration options, board specific
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
13#include <configs/x86-common.h>
14
15#define CONFIG_SYS_MONITOR_LEN (1 << 20)
16
Bin Meng1ab2c012018-06-17 05:57:53 -070017#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \
Bin Meng32151d42018-06-12 08:36:18 -070018 "stdout=serial,vidconsole\0" \
19 "stderr=serial,vidconsole\0"
20
21/* ATA/IDE support */
Bin Meng32151d42018-06-12 08:36:18 -070022
23#endif /* __CONFIG_H */