soc/intel/common: Keep common non-IP code block inside basecode
Expand the scope of 'common/basecode' directory to keep common non-IP code block (like acpi, power limit). Signed-off-by: Subrata Banik <subrata.banik@intel.com> Change-Id: I7a2778704016b501eb20382d4603295cec8375d5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/45522 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
2854f40668
commit
0180e43f3d
|
@ -6,13 +6,13 @@ config SOC_INTEL_COMMON
|
|||
|
||||
if SOC_INTEL_COMMON
|
||||
|
||||
comment "Intel SoC Common Code"
|
||||
comment "Intel SoC Common Code for IP blocks"
|
||||
source "src/soc/intel/common/block/Kconfig"
|
||||
|
||||
comment "Intel SoC Common PCH Code"
|
||||
source "src/soc/intel/common/pch/Kconfig"
|
||||
|
||||
comment "Intel SoC Common coreboot stages"
|
||||
comment "Intel SoC Common coreboot stages and non-IP blocks"
|
||||
source "src/soc/intel/common/basecode/Kconfig"
|
||||
|
||||
config SOC_INTEL_COMMON_RESET
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
config SOC_INTEL_COMMON_BASECODE
|
||||
bool
|
||||
help
|
||||
Common coreboot stages for Intel platform
|
||||
Common coreboot stages and non-IP block for Intel platform
|
||||
|
||||
if SOC_INTEL_COMMON_BASECODE
|
||||
|
||||
comment "Intel platform Common coreboot stage files"
|
||||
source "src/soc/intel/common/basecode/*/Kconfig"
|
||||
source "src/soc/intel/common/basecode/*/*/Kconfig"
|
||||
|
||||
|
|
Loading…
Reference in New Issue