summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorWeijie Gao <weijie.gao@mediatek.com>2021-03-05 10:39:55 +0800
committerTom Rini <trini@konsulko.com>2021-03-20 16:24:27 -0400
commitf4f478be4c95e3bfa500074f3fc6f1f216eb2e16 (patch)
treecb58f04adc8b07e631029188c5cd5ae49aedfc96 /Makefile
parent0b9f1ae5867df2e71bd4b98d675095a3417426d7 (diff)
downloadu-boot-f4f478be4c95e3bfa500074f3fc6f1f216eb2e16.tar.gz
u-boot-f4f478be4c95e3bfa500074f3fc6f1f216eb2e16.tar.xz
u-boot-f4f478be4c95e3bfa500074f3fc6f1f216eb2e16.zip
board: mt7629: enable compression of u-boot to reduce the size of final image
This patch makes use of the decompression mechanism implemented for mt7628 previously to reduce the total image size. Binman will be also removed. Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 36b867ac1b..b72d8d20c0 100644
--- a/Makefile
+++ b/Makefile
@@ -1728,6 +1728,9 @@ u-boot-elf.lds: arch/u-boot-elf.lds prepare FORCE
ifeq ($(CONFIG_SPL),y)
spl/u-boot-spl-mtk.bin: spl/u-boot-spl
+
+u-boot-mtk.bin: u-boot-with-spl.bin
+ $(call if_changed,copy)
else
MKIMAGEFLAGS_u-boot-mtk.bin = -T mtk_image \
-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) \