Subrata Banik has submitted this change. ( 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 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 --- M src/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Jeremy Soller: Looks good to me, approved
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