2018-05-07 05:58:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-02-02 22:35:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* board/config.h - configuration options, board specific
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include <configs/x86-common.h>
|
|
|
|
|
|
|
|
/* ns16550 UART is memory-mapped in Quark SoC */
|
|
|
|
|
2022-12-04 23:13:56 +08:00
|
|
|
#define CFG_STD_DEVICES_SETTINGS "stdin=serial\0" \
|
2015-02-02 22:35:28 +08:00
|
|
|
"stdout=serial\0" \
|
|
|
|
"stderr=serial\0"
|
|
|
|
|
2015-03-11 17:22:29 +08:00
|
|
|
/* Environment configuration */
|
|
|
|
|
2015-02-02 22:35:28 +08:00
|
|
|
#endif /* __CONFIG_H */
|