diff options
author | Ben Stoltz <stoltz@google.com> | 2015-08-04 12:33:50 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-05 08:44:06 -0600 |
commit | cd326a32c9fc317af30d682db2ba8f3242bc1221 (patch) | |
tree | b107e37dd64b92ccba6259ebcc6316bff8081afd /include/configs/efi-x86.h | |
parent | a42bfe02d3042b82c9381bb6c96dadae37594c28 (diff) |
x86: Add definitions for the x86-efi board and plumb it in
Add configuration and Kconfig changes for this board.
Signed-off-by: Ben Stoltz <stoltz@google.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/configs/efi-x86.h')
-rw-r--r-- | include/configs/efi-x86.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/configs/efi-x86.h b/include/configs/efi-x86.h new file mode 100644 index 00000000000..5779cfdb66b --- /dev/null +++ b/include/configs/efi-x86.h @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2015 Google, Inc + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#include <configs/x86-common.h> + +#undef CONFIG_CMD_SF_TEST + +#undef CONFIG_TPM +#undef CONFIG_TPM_TIS_LPC +#undef CONFIG_TPM_TIS_BASE_ADDRESS + +#undef CONFIG_CMD_IMLS + +#undef CONFIG_SYS_NS16550 +#undef CONFIG_X86_SERIAL +#undef CONFIG_ENV_IS_IN_SPI_FLASH +#define CONFIG_ENV_IS_NOWHERE +#undef CONFIG_VIDEO +#undef CONFIG_CFB_CONSOLE +#undef CONFIG_SCSI_AHCI +#undef CONFIG_CMD_SCSI +#undef CONFIG_INTEL_ICH6_GPIO + +#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,vga,serial\0" \ + "stdout=vga,serial\0" \ + "stderr=vga,serial\0" + +#endif |