diff options
| author | Nishanth Menon <[email protected]> | 2024-02-12 13:47:16 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-02-20 17:57:40 -0500 |
| commit | 66ebb10b0f7ef870a98adbe2c35fa3e54761ee05 (patch) | |
| tree | c0a1be5c348eeffb8653970410b9f3d7267b8a5f | |
| parent | e8f2404e093daf6cc3ac2b3233e3c6770d13e371 (diff) | |
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 <[email protected]>
Signed-off-by: Nishanth Menon <[email protected]>
| -rw-r--r-- | board/ti/omap3evm/Kconfig | 2 | ||||
| -rw-r--r-- | board/ti/panda/Kconfig | 2 | ||||
| -rw-r--r-- | board/ti/sdp4430/Kconfig | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/board/ti/omap3evm/Kconfig b/board/ti/omap3evm/Kconfig index 08a8aa20ae8..cd71fe08317 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 8f277b612a4..5912f69babe 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 36f18528216..65e9107bc1b 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 |
