diff options
author | Konstantin Porotchkin <kostap@marvell.com> | 2018-08-29 16:34:54 +0300 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-09-19 13:54:14 +0200 |
commit | 3c2a3897e85177655134110bc32e04be668b1de8 (patch) | |
tree | 3c60efd44694969fd7f5b2c30071e749b3f11c78 /cmd/Makefile | |
parent | d3c72c5dc1396ecfc31bb4a8e322457a8c916aec (diff) | |
download | u-boot-3c2a3897e85177655134110bc32e04be668b1de8.zip u-boot-3c2a3897e85177655134110bc32e04be668b1de8.tar.gz u-boot-3c2a3897e85177655134110bc32e04be668b1de8.tar.bz2 |
fix: cmd: mvebu: Exclude mvebu commands from SPL builds
Exclude mvebu commands from SPL builds
Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
Cc: Igal Liberman <igall@marvell.com>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 ";") |