mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
x86: galileo: Convert to text environment
Use the common include. Drop everything from the config.h file. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> # Intel Edison Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
df827efecd
commit
b5948c5d39
2 changed files with 11 additions and 19 deletions
11
board/intel/galileo/galileo.env
Normal file
11
board/intel/galileo/galileo.env
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <env/x86.env>
|
||||||
|
|
||||||
|
/* use just serial */
|
||||||
|
stdin=serial
|
||||||
|
stdout=serial
|
||||||
|
stderr=serial
|
|
@ -2,22 +2,3 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
* 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 */
|
|
||||||
|
|
||||||
#define CFG_STD_DEVICES_SETTINGS "stdin=serial\0" \
|
|
||||||
"stdout=serial\0" \
|
|
||||||
"stderr=serial\0"
|
|
||||||
|
|
||||||
/* Environment configuration */
|
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
|
||||||
|
|
Loading…
Reference in a new issue