mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-29 10:01:43 +00:00
board: ns3: kconfig: extend board kconfig with specific commands
Extend Kconfig for the board with board-specific commands selection. Signed-off-by: Vladimir Olovyannikov <vladimir.olovyannikov@broadcom.com> Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
a09ca687e7
commit
ff6a87560e
2 changed files with 9 additions and 0 deletions
|
@ -12,4 +12,11 @@ config SYS_SOC
|
||||||
config SYS_CONFIG_NAME
|
config SYS_CONFIG_NAME
|
||||||
default "bcm_ns3"
|
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
|
endif
|
||||||
|
|
|
@ -197,6 +197,8 @@ obj-$(CONFIG_$(SPL_)CMD_TLV_EEPROM) += tlv_eeprom.o
|
||||||
# core command
|
# core command
|
||||||
obj-y += nvedit.o
|
obj-y += nvedit.o
|
||||||
|
|
||||||
|
obj-$(CONFIG_CMD_BCM_EXT_UTILS) += broadcom/
|
||||||
|
|
||||||
obj-$(CONFIG_TI_COMMON_CMD_OPTIONS) += ti/
|
obj-$(CONFIG_TI_COMMON_CMD_OPTIONS) += ti/
|
||||||
|
|
||||||
filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";")
|
filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue