aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2024-02-12 13:47:16 -0600
committerTom Rini <trini@konsulko.com>2024-02-20 17:57:40 -0500
commit66ebb10b0f7ef870a98adbe2c35fa3e54761ee05 (patch)
treec0a1be5c348eeffb8653970410b9f3d7267b8a5f
parente8f2404e093daf6cc3ac2b3233e3c6770d13e371 (diff)
downloadu-boot-66ebb10b0f7ef870a98adbe2c35fa3e54761ee05.zip
u-boot-66ebb10b0f7ef870a98adbe2c35fa3e54761ee05.tar.gz
u-boot-66ebb10b0f7ef870a98adbe2c35fa3e54761ee05.tar.bz2
board: ti: Add missing common/Kconfig references
Add missing board/ti/common/Kconfig references for the platforms that missed it. The intent is for the common Kconfig to be usable across TI reference boards as required. Reported-by: Tom Rini <trini@konsulko.com> Signed-off-by: Nishanth Menon <nm@ti.com>
-rw-r--r--board/ti/omap3evm/Kconfig2
-rw-r--r--board/ti/panda/Kconfig2
-rw-r--r--board/ti/sdp4430/Kconfig2
3 files changed, 6 insertions, 0 deletions
diff --git a/board/ti/omap3evm/Kconfig b/board/ti/omap3evm/Kconfig
index 08a8aa2..cd71fe0 100644
--- a/board/ti/omap3evm/Kconfig
+++ b/board/ti/omap3evm/Kconfig
@@ -9,4 +9,6 @@ config SYS_VENDOR
config SYS_CONFIG_NAME
default "omap3_evm"
+source "board/ti/common/Kconfig"
+
endif
diff --git a/board/ti/panda/Kconfig b/board/ti/panda/Kconfig
index 8f277b6..5912f69 100644
--- a/board/ti/panda/Kconfig
+++ b/board/ti/panda/Kconfig
@@ -9,4 +9,6 @@ config SYS_VENDOR
config SYS_CONFIG_NAME
default "omap4_panda"
+source "board/ti/common/Kconfig"
+
endif
diff --git a/board/ti/sdp4430/Kconfig b/board/ti/sdp4430/Kconfig
index 36f1852..65e9107 100644
--- a/board/ti/sdp4430/Kconfig
+++ b/board/ti/sdp4430/Kconfig
@@ -12,4 +12,6 @@ config SYS_CONFIG_NAME
config CMD_BAT
bool "Enable board-specific battery command"
+source "board/ti/common/Kconfig"
+
endif