mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
70f2030f02
This is always zero in the source tree, so drop it. While we are here, add a comment to _X86EMU_env since the symbol is actually defined twice, which can cause confusion when building. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
17 lines
399 B
C
17 lines
399 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*/
|
|
|
|
#ifndef _X86_CHROMEBOOK_H
|
|
#define _X86_CHROMEBOOK_H
|
|
|
|
#define CFG_X86_MRC_ADDR 0xfffa0000
|
|
#define CFG_X86_REFCODE_ADDR 0xffea0000
|
|
#define CFG_X86_REFCODE_RUN_ADDR 0
|
|
|
|
#define CFG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \
|
|
"stdout=vidconsole,serial\0" \
|
|
"stderr=vidconsole,serial\0"
|
|
|
|
#endif
|