diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-01-13 15:17:42 +0100 |
---|---|---|
committer | Patrick Delaunay <patrick.delaunay@st.com> | 2020-01-17 13:58:27 +0100 |
commit | 846254888e2e1bd91edeedd208fca44eea512845 (patch) | |
tree | 38531b2d0bd1450f1b98c43730489133ea659fa3 /board/st/common/Kconfig | |
parent | 493305716c7c91e91b3fcdcdd4a1bd662157c1ff (diff) |
stm32mp1: split board and SOC support for STM32MP15x family
Split the board and SOC support for STM32MP15x family and
prepare the introduction of new boards with STM32MP15x.
This path define the 2 configurations:
- STM32MP15x: STM32MP15x soc support (new)
- TARGET_ST_STM32MP15x: STMicroelectronics board support (choice)
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'board/st/common/Kconfig')
-rw-r--r-- | board/st/common/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/st/common/Kconfig b/board/st/common/Kconfig index 1824087afc..af01ca4891 100644 --- a/board/st/common/Kconfig +++ b/board/st/common/Kconfig @@ -1,6 +1,7 @@ config CMD_STBOARD bool "stboard - command for OTP board information" - default y + depends on ARCH_STM32MP + default y if TARGET_ST_STM32MP15x help This compile the stboard command to read and write the board in the OTP. |