Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38801 )
Change subject: Kconfig: Add CONFIG_PCI dependency for CONFIG_MINIMAL_PCI_SCANNING ......................................................................
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 --- M src/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/38801/1
diff --git a/src/Kconfig b/src/Kconfig index 4253ec7..f75f942 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -369,9 +369,9 @@
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