diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-08-11 14:04:10 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-19 03:04:54 +0200 |
commit | 16c173fdf5d6060ecdd63ca4593fb76b2167ab9b (patch) | |
tree | 77e1d8fac04949cbd9fb891228b2baa0ea592a13 /src/Kconfig | |
parent | d3d77beffa1e7c8d28deabeda0709e0a0beacce2 (diff) |
Kconfig: separate memory mapped boot device from SPI
Make the indication of the boot device being memory mapped
separate from SPI. However, retain the same defaults that
previously existed.
BUG=chrome-os-partner:56151
Change-Id: I06f138078c47a1e4b4b3edbdbf662f171e11c9d4
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/16228
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 04b8d247df..f7a924f5c3 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -483,6 +483,13 @@ config BOOT_DEVICE_SPI_FLASH default y if !BOOT_DEVICE_NOT_SPI_FLASH default n +config BOOT_DEVICE_MEMORY_MAPPED + bool + default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH + default n + help + Inform system if SPI is memory-mapped or not. + config RTC bool default n |