diff options
| author | Vladimir Olovyannikov <[email protected]> | 2020-08-20 20:41:07 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-09-09 16:57:35 -0400 |
| commit | ff6a87560e06ba03653fe682fbad3a48b4b664d4 (patch) | |
| tree | b6d719f996089254207d284a93eeac191fea5915 | |
| parent | a09ca687e7719ef0767f3febb8980725da800eb8 (diff) | |
board: ns3: kconfig: extend board kconfig with specific commands
Extend Kconfig for the board with board-specific commands selection.
Signed-off-by: Vladimir Olovyannikov <[email protected]>
Signed-off-by: Rayagonda Kokatanur <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | board/broadcom/bcmns3/Kconfig | 7 | ||||
| -rw-r--r-- | cmd/Makefile | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/board/broadcom/bcmns3/Kconfig b/board/broadcom/bcmns3/Kconfig index 8ce21f980d5..cb73f98eaee 100644 --- a/board/broadcom/bcmns3/Kconfig +++ b/board/broadcom/bcmns3/Kconfig @@ -12,4 +12,11 @@ config SYS_SOC config SYS_CONFIG_NAME default "bcm_ns3" +config CMD_BCM_EXT_UTILS + bool "Enable Broadcom-specific U-Boot commands" + default y + help + Enable Broadcom specific U-Boot commands such as error log setup + command or any other commands specific to NS3 platform. + endif diff --git a/cmd/Makefile b/cmd/Makefile index 3a9c9747c94..c7a08ed1094 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -197,6 +197,8 @@ obj-$(CONFIG_$(SPL_)CMD_TLV_EEPROM) += tlv_eeprom.o # core command obj-y += nvedit.o +obj-$(CONFIG_CMD_BCM_EXT_UTILS) += broadcom/ + obj-$(CONFIG_TI_COMMON_CMD_OPTIONS) += ti/ filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";") |
