From 972784fcae2a9fee63c44f484d7192350799178d Mon Sep 17 00:00:00 2001 From: gtxaspec Date: Tue, 7 May 2024 13:01:14 -0700 Subject: [PATCH] optimize lzop compression --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a05501b..9290a526 100644 --- a/Makefile +++ b/Makefile @@ -490,7 +490,7 @@ CONFIG_SYS_UBOOT_START := 0 endif $(obj)u-boot-lzo.img: $(obj)u-boot.bin - lzop -f -o u-boot-lzo.bin $(obj)u-boot.bin + lzop -9 -f -o u-boot-lzo.bin $(obj)u-boot.bin mkimage -A mips -O u-boot -T firmware -C lzo -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \ -n "u-boot-lzo.img" -d u-boot-lzo.bin $@