From: Konstantin Porotchkin Date: Wed, 29 Aug 2018 13:34:54 +0000 (+0300) Subject: fix: cmd: mvebu: Exclude mvebu commands from SPL builds X-Git-Tag: v2018.11-rc1~114^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c2a3897e85177655134110bc32e04be668b1de8;p=platform%2Fkernel%2Fu-boot.git fix: cmd: mvebu: Exclude mvebu commands from SPL builds Exclude mvebu commands from SPL builds Signed-off-by: Konstantin Porotchkin Cc: Igal Liberman Cc: Stefan Roese Signed-off-by: Stefan Roese --- diff --git a/cmd/Makefile b/cmd/Makefile index 3487c80..a61fab6 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -163,12 +163,13 @@ obj-$(CONFIG_CMD_BLOB) += blob.o obj-$(CONFIG_CMD_AVB) += avb.o obj-$(CONFIG_X86) += x86/ + +obj-$(CONFIG_ARCH_MVEBU) += mvebu/ endif # !CONFIG_SPL_BUILD # core command obj-y += nvedit.o -obj-$(CONFIG_ARCH_MVEBU) += mvebu/ obj-$(CONFIG_TI_COMMON_CMD_OPTIONS) += ti/ filechk_data_gz = (echo "static const char data_gz[] ="; cat $< | scripts/bin2c; echo ";")