diff options
author | Subrata Banik <subrata.banik@intel.com> | 2020-02-09 19:35:16 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2020-02-11 02:34:50 +0000 |
commit | 1cb26a6300aeac438322a0288cecfb44e977d6ae (patch) | |
tree | d8938922b8d6530095d3b06e9fb4bc0de470525b /src/Kconfig | |
parent | 37bead6d26fc45f66e8032c50b3af619b246f1dc (diff) | |
download | coreboot-1cb26a6300aeac438322a0288cecfb44e977d6ae.tar.xz |
Kconfig: Add CONFIG_PCI dependency for CONFIG_MINIMAL_PCI_SCANNING
Make sure MINIMAL_PCI_SCANNING has right dependency over PCI kconfig
symbol.
Change-Id: I30b18345976e5d21ccedf8906985ff71e7d2815c
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38801
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index 4253ec7d52..f75f94279e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -369,9 +369,9 @@ config CONFIGURABLE_RAMSTAGE config MINIMAL_PCI_SCANNING bool "Enable minimal PCI scanning" - depends on CONFIGURABLE_RAMSTAGE + depends on CONFIGURABLE_RAMSTAGE && PCI help - If this option is enabled, coreboot will scan only devices + If this option is enabled, coreboot will scan only PCI devices marked as mandatory in devicetree.cb endmenu |