diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-22 17:39:20 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-02-27 14:18:54 -0500 |
commit | 3dd1486800d3aa0cff114a34d7dc1cdc3f47c172 (patch) | |
tree | ad3ad10466de3f7746f33d25148a5b81aebf9a6b /board/st | |
parent | 770afff24aa56d7d992682fbad396e5b7f0a969e (diff) | |
download | u-boot-3dd1486800d3aa0cff114a34d7dc1cdc3f47c172.tar.gz u-boot-3dd1486800d3aa0cff114a34d7dc1cdc3f47c172.tar.bz2 u-boot-3dd1486800d3aa0cff114a34d7dc1cdc3f47c172.zip |
Kconfig: Centralize prompting for SYS_CONFIG_NAME
Generally speaking, we do not prompt for this value and define it in the
board specific Kconfig file. There are some valid use cases however
today where we do prompt for this value, so instead of having this be
done in a number of locations, do this at the top-level location only.
This removes the question from a number of other locations and makes it
consistent that when we do set the value directly, we always do it the
same way. We don't need to specify the type, it's always string.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/st')
-rw-r--r-- | board/st/stih410-b2260/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32f429-discovery/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32f429-evaluation/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32f469-discovery/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32f746-disco/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32h743-disco/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32h743-eval/Kconfig | 1 | ||||
-rw-r--r-- | board/st/stm32h750-art-pi/Kconfig | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/board/st/stih410-b2260/Kconfig b/board/st/stih410-b2260/Kconfig index 590add05fe..441a83cbae 100644 --- a/board/st/stih410-b2260/Kconfig +++ b/board/st/stih410-b2260/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stih410" config SYS_CONFIG_NAME - string default "stih410-b2260" endif diff --git a/board/st/stm32f429-discovery/Kconfig b/board/st/stm32f429-discovery/Kconfig index e73d11bada..3c93df20af 100644 --- a/board/st/stm32f429-discovery/Kconfig +++ b/board/st/stm32f429-discovery/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32f4" config SYS_CONFIG_NAME - string default "stm32f429-discovery" endif diff --git a/board/st/stm32f429-evaluation/Kconfig b/board/st/stm32f429-evaluation/Kconfig index ca4bb3d9c9..eaa40db8a7 100644 --- a/board/st/stm32f429-evaluation/Kconfig +++ b/board/st/stm32f429-evaluation/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32f4" config SYS_CONFIG_NAME - string default "stm32f429-evaluation" endif diff --git a/board/st/stm32f469-discovery/Kconfig b/board/st/stm32f469-discovery/Kconfig index de61b6f2f6..622a8d82d8 100644 --- a/board/st/stm32f469-discovery/Kconfig +++ b/board/st/stm32f469-discovery/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32f4" config SYS_CONFIG_NAME - string default "stm32f469-discovery" endif diff --git a/board/st/stm32f746-disco/Kconfig b/board/st/stm32f746-disco/Kconfig index 09289d2323..86ace17377 100644 --- a/board/st/stm32f746-disco/Kconfig +++ b/board/st/stm32f746-disco/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32f7" config SYS_CONFIG_NAME - string default "stm32f746-disco" endif diff --git a/board/st/stm32h743-disco/Kconfig b/board/st/stm32h743-disco/Kconfig index 7d6ec1d958..bc116bcf32 100644 --- a/board/st/stm32h743-disco/Kconfig +++ b/board/st/stm32h743-disco/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32h7" config SYS_CONFIG_NAME - string default "stm32h743-disco" endif diff --git a/board/st/stm32h743-eval/Kconfig b/board/st/stm32h743-eval/Kconfig index ea879b13c8..ff86de25f7 100644 --- a/board/st/stm32h743-eval/Kconfig +++ b/board/st/stm32h743-eval/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32h7" config SYS_CONFIG_NAME - string default "stm32h743-eval" endif diff --git a/board/st/stm32h750-art-pi/Kconfig b/board/st/stm32h750-art-pi/Kconfig index c31b9849fd..ab2d0f227d 100644 --- a/board/st/stm32h750-art-pi/Kconfig +++ b/board/st/stm32h750-art-pi/Kconfig @@ -13,7 +13,6 @@ config SYS_SOC default "stm32h7" config SYS_CONFIG_NAME - string default "stm32h750-art-pi" endif |