diff options
| author | Tom Rini <[email protected]> | 2023-10-07 15:36:58 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-10-16 10:25:02 -0400 |
| commit | 1b377a9ffeb5bf5716f75d6f52bc3fe6a00adc8c (patch) | |
| tree | ef00166ccb8fa686b1b98cc65c20f4c6f7c6211c /cmd/Makefile | |
| parent | 3616218b5acea74011aea2d14aa1f6366f242849 (diff) | |
cmd/ti: Update Kconfig logic and Makefile recursion logic
- Add some dependencies to CMD_DDR3 as this is only valid on some
platforms (which tend to select it as well).
- The proper gate for going in to cmd/ti is not
CONFIG_TI_COMMON_CMD_OPTIONS as nothing under there is controlled by
that symbol but the general TI architecture options.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Makefile')
| -rw-r--r-- | cmd/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 83a4481cc9e..44db5f22861 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -235,6 +235,11 @@ obj-$(CONFIG_X86) += x86/ obj-$(CONFIG_CMD_MESON) += meson/ obj-$(CONFIG_ARCH_MVEBU) += mvebu/ + +# TI +obj-$(CONFIG_ARCH_KEYSTONE) += ti/ +obj-$(CONFIG_ARCH_K3) += ti/ +obj-$(CONFIG_ARCH_OMAP2PLUS) += ti/ endif # !CONFIG_SPL_BUILD obj-$(CONFIG_$(SPL_)CMD_TLV_EEPROM) += tlv_eeprom.o @@ -244,8 +249,6 @@ 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 ";") filechk_data_size = \ |
