]> Git Repo - J-u-boot.git/commitdiff
board: ns3: kconfig: extend board kconfig with specific commands
authorVladimir Olovyannikov <[email protected]>
Thu, 20 Aug 2020 15:11:07 +0000 (20:41 +0530)
committerTom Rini <[email protected]>
Wed, 9 Sep 2020 20:57:35 +0000 (16:57 -0400)
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]>
board/broadcom/bcmns3/Kconfig
cmd/Makefile

index 8ce21f980d5cd8320b7fb1c8f25e2c6a8117d18a..cb73f98eaeed547764607863d65582abe89bff46 100644 (file)
@@ -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
index 3a9c9747c949905db72edcfd9c7ee11e49729490..c7a08ed109434091546293ba4d48c93db83cc288 100644 (file)
@@ -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 ";")
This page took 0.043901 seconds and 4 git commands to generate.