diff options
author | Weijie Gao | 2021-03-05 10:39:55 +0800 |
---|---|---|
committer | Tom Rini | 2021-03-20 16:24:27 -0400 |
commit | f4f478be4c95e3bfa500074f3fc6f1f216eb2e16 (patch) | |
tree | cb58f04adc8b07e631029188c5cd5ae49aedfc96 /Makefile | |
parent | 0b9f1ae5867df2e71bd4b98d675095a3417426d7 (diff) |
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-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) \ |