diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-07-30 06:23:20 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-08-01 20:17:02 +0800 |
commit | 08fb85b2a46914e07d9c0bf92dfe4773f28ad1de (patch) | |
tree | 6e8724f53100ff4ac0ab5ef47ce5aa6c843d990c /arch/x86 | |
parent | 1b15ef9cd263552d700553ce30dee49bea61390b (diff) | |
download | u-boot-08fb85b2a46914e07d9c0bf92dfe4773f28ad1de.tar.gz u-boot-08fb85b2a46914e07d9c0bf92dfe4773f28ad1de.tar.bz2 u-boot-08fb85b2a46914e07d9c0bf92dfe4773f28ad1de.zip |
x86: coreboot: kconfig: Imply drivers that are useful
U-Boot as coreboot payload can run on any x86 hardware ideally.
Let's imply some common drivers that are useful.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/cpu/coreboot/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/cpu/coreboot/Kconfig b/arch/x86/cpu/coreboot/Kconfig index 9820651931..31fe17bb9b 100644 --- a/arch/x86/cpu/coreboot/Kconfig +++ b/arch/x86/cpu/coreboot/Kconfig @@ -3,6 +3,16 @@ if TARGET_COREBOOT config SYS_COREBOOT bool default y + imply ENV_IS_NOWHERE + imply E1000 + imply ICH_SPI + imply MMC + imply MMC_PCI + imply MMC_SDHCI + imply MMC_SDHCI_SDMA + imply SPI_FLASH + imply SYS_NS16550 + imply VIDEO_COREBOOT imply CMD_CBFS imply FS_CBFS |