kconfig: add CONFIG_SUPPORT_TPL
CONFIG_TPL should not be enabled for boards that do not have TPL. CONFIG_SUPPORT_TPL introduced by this commit should be "select"ed by boards with TPL support and CONFIG_TPL should depend on it. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
02627356b6
commit
cf6bbe4c61
5
Kconfig
5
Kconfig
|
@ -73,6 +73,9 @@ config TPL_BUILD
|
||||||
config SUPPORT_SPL
|
config SUPPORT_SPL
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config SUPPORT_TPL
|
||||||
|
bool
|
||||||
|
|
||||||
config SPL
|
config SPL
|
||||||
bool
|
bool
|
||||||
depends on SUPPORT_SPL
|
depends on SUPPORT_SPL
|
||||||
|
@ -83,7 +86,7 @@ config SPL
|
||||||
|
|
||||||
config TPL
|
config TPL
|
||||||
bool
|
bool
|
||||||
depends on SPL
|
depends on SPL && SUPPORT_TPL
|
||||||
prompt "Enable TPL" if !SPL_BUILD
|
prompt "Enable TPL" if !SPL_BUILD
|
||||||
default y if TPL_BUILD
|
default y if TPL_BUILD
|
||||||
default n
|
default n
|
||||||
|
|
|
@ -28,6 +28,7 @@ config TARGET_BSC9132QDS
|
||||||
config TARGET_C29XPCIE
|
config TARGET_C29XPCIE
|
||||||
bool "Support C29XPCIE"
|
bool "Support C29XPCIE"
|
||||||
select SUPPORT_SPL
|
select SUPPORT_SPL
|
||||||
|
select SUPPORT_TPL
|
||||||
|
|
||||||
config TARGET_P3041DS
|
config TARGET_P3041DS
|
||||||
bool "Support P3041DS"
|
bool "Support P3041DS"
|
||||||
|
@ -74,10 +75,12 @@ config TARGET_MPC8572DS
|
||||||
config TARGET_P1010RDB
|
config TARGET_P1010RDB
|
||||||
bool "Support P1010RDB"
|
bool "Support P1010RDB"
|
||||||
select SUPPORT_SPL
|
select SUPPORT_SPL
|
||||||
|
select SUPPORT_TPL
|
||||||
|
|
||||||
config TARGET_P1022DS
|
config TARGET_P1022DS
|
||||||
bool "Support P1022DS"
|
bool "Support P1022DS"
|
||||||
select SUPPORT_SPL
|
select SUPPORT_SPL
|
||||||
|
select SUPPORT_TPL
|
||||||
|
|
||||||
config TARGET_P1023RDB
|
config TARGET_P1023RDB
|
||||||
bool "Support P1023RDB"
|
bool "Support P1023RDB"
|
||||||
|
@ -85,10 +88,12 @@ config TARGET_P1023RDB
|
||||||
config TARGET_P1_P2_RDB
|
config TARGET_P1_P2_RDB
|
||||||
bool "Support P1_P2_RDB"
|
bool "Support P1_P2_RDB"
|
||||||
select SUPPORT_SPL
|
select SUPPORT_SPL
|
||||||
|
select SUPPORT_TPL
|
||||||
|
|
||||||
config TARGET_P1_P2_RDB_PC
|
config TARGET_P1_P2_RDB_PC
|
||||||
bool "Support p1_p2_rdb_pc"
|
bool "Support p1_p2_rdb_pc"
|
||||||
select SUPPORT_SPL
|
select SUPPORT_SPL
|
||||||
|
select SUPPORT_TPL
|
||||||
|
|
||||||
config TARGET_P1_TWR
|
config TARGET_P1_TWR
|
||||||
bool "Support p1_twr"
|
bool "Support p1_twr"
|
||||||
|
|
Loading…
Reference in New Issue