Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/50800 )
Change subject: southbridge: Ensure common Kconfig gets included last ......................................................................
southbridge: Ensure common Kconfig gets included last
Change-Id: Icaa64e664499090fec3e98687b4827ef27cc201b Signed-off-by: Angel Pons th3fanbus@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/50800 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nico Huber nico.h@gmx.de --- M src/Kconfig R src/southbridge/intel/common/Kconfig.common 2 files changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/src/Kconfig b/src/Kconfig index 1e3b0d5..9106c05 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -526,6 +526,7 @@ source "src/northbridge/*/*/Kconfig.common" comment "Southbridge" source "src/southbridge/*/*/Kconfig" +source "src/southbridge/*/*/Kconfig.common" comment "Super I/O" source "src/superio/*/*/Kconfig" comment "Embedded Controllers" diff --git a/src/southbridge/intel/common/Kconfig b/src/southbridge/intel/common/Kconfig.common similarity index 100% rename from src/southbridge/intel/common/Kconfig rename to src/southbridge/intel/common/Kconfig.common