diff options
author | Angel Pons <th3fanbus@gmail.com> | 2018-06-24 14:13:53 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-08-05 19:57:56 +0000 |
commit | cea849328599c98219ff78cfb83083573aa80f77 (patch) | |
tree | 2c9aede0549c94cae85dd000dff663b1b60ac681 /src/mainboard/asus | |
parent | 3a2f900cfeca3827d155f3d928555e45bebe6076 (diff) |
southbridge/intel/bd82x6x/Kconfig: Do not include any IFD by default
Since only a handful of boards have descriptor blobs in the tree, it makes no
sense to have `HAVE_IFD_BIN` enabled by default then disabled on each mainboard.
This patch flips the default value of said variable, rendering all current
overrides unnecessary. The few boards which have an IFD in the blobs repo use
`select HAVE_IFD_BIN` to enable adding the IFD by default.
Since `HAVE_ME_BIN` depends on `HAVE_IFD_BIN`, the former has been removed
alongside the latter, and has been added to the boards with a ME blob as
`select HAVE_ME_BIN`.
Both `HAVE_IFD_BIN` and `HAVE_ME_BIN` have been removed from autoport as well.
Change-Id: I330c4886f8bea4b1a8ecad6505a0e5cc381654d1
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/27218
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/maximus_iv_gene-z/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/asus/p8h61-m_lx/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/asus/p8h61-m_pro/Kconfig | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/src/mainboard/asus/maximus_iv_gene-z/Kconfig b/src/mainboard/asus/maximus_iv_gene-z/Kconfig index eacf92e68f..13fad2dbc1 100644 --- a/src/mainboard/asus/maximus_iv_gene-z/Kconfig +++ b/src/mainboard/asus/maximus_iv_gene-z/Kconfig @@ -32,10 +32,6 @@ config BOARD_SPECIFIC_OPTIONS select SUPERIO_NUVOTON_NCT6776 select USE_NATIVE_RAMINIT -config HAVE_IFD_BIN - bool - default n - config MAINBOARD_DIR string default asus/maximus_iv_gene-z diff --git a/src/mainboard/asus/p8h61-m_lx/Kconfig b/src/mainboard/asus/p8h61-m_lx/Kconfig index e3712f1c71..0960803546 100644 --- a/src/mainboard/asus/p8h61-m_lx/Kconfig +++ b/src/mainboard/asus/p8h61-m_lx/Kconfig @@ -36,10 +36,6 @@ config BOARD_SPECIFIC_OPTIONS select SUPERIO_NUVOTON_NCT6776_COM_A select USE_NATIVE_RAMINIT -config HAVE_IFD_BIN - bool - default n - config MAINBOARD_DIR string default asus/p8h61-m_lx diff --git a/src/mainboard/asus/p8h61-m_pro/Kconfig b/src/mainboard/asus/p8h61-m_pro/Kconfig index cd01b0fe46..8fcc6509c8 100644 --- a/src/mainboard/asus/p8h61-m_pro/Kconfig +++ b/src/mainboard/asus/p8h61-m_pro/Kconfig @@ -32,10 +32,6 @@ config BOARD_SPECIFIC_OPTIONS select HAVE_CMOS_DEFAULT select DRIVERS_ASMEDIA_ASPM_BLACKLIST -config HAVE_IFD_BIN - bool - default n - config MAINBOARD_DIR string default asus/p8h61-m_pro |