[openwrt/openwrt] uboot-mediatek: don't rely in 'lzma' cmdline

LEDE Commits lede-commits at lists.infradead.org
Thu Mar 18 04:20:20 GMT 2021


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/81edc842f6277bc9c12a86f295caab70ad519d27

commit 81edc842f6277bc9c12a86f295caab70ad519d27
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Thu Mar 18 04:18:05 2021 +0000

    uboot-mediatek: don't rely in 'lzma' cmdline
    
    Use 'xz --format=lzma' instead.
    Fixes build for mt7629.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
 .../010-ahci-mediatek-fix-missing-dev_err-definition.patch    |  5 -----
 .../uboot-mediatek/patches/120-use-xz-instead-of-lzma.patch   | 11 +++++++++++
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/package/boot/uboot-mediatek/patches/010-ahci-mediatek-fix-missing-dev_err-definition.patch b/package/boot/uboot-mediatek/patches/010-ahci-mediatek-fix-missing-dev_err-definition.patch
index 5e2b4aa39b..448bf7b865 100644
--- a/package/boot/uboot-mediatek/patches/010-ahci-mediatek-fix-missing-dev_err-definition.patch
+++ b/package/boot/uboot-mediatek/patches/010-ahci-mediatek-fix-missing-dev_err-definition.patch
@@ -7,8 +7,6 @@ Subject: [PATCH] ahci: mediatek: fix missing dev_err definition
  drivers/ata/mtk_ahci.c | 1 +
  1 file changed, 1 insertion(+)
 
-diff --git a/drivers/ata/mtk_ahci.c b/drivers/ata/mtk_ahci.c
-index 554175bc00..2c5227df30 100644
 --- a/drivers/ata/mtk_ahci.c
 +++ b/drivers/ata/mtk_ahci.c
 @@ -21,6 +21,7 @@
@@ -19,6 +17,3 @@ index 554175bc00..2c5227df30 100644
  
  #define SYS_CFG			0x14
  #define SYS_CFG_SATA_MSK	GENMASK(31, 30)
--- 
-2.30.2
-
diff --git a/package/boot/uboot-mediatek/patches/120-use-xz-instead-of-lzma.patch b/package/boot/uboot-mediatek/patches/120-use-xz-instead-of-lzma.patch
new file mode 100644
index 0000000000..d33b0b93a0
--- /dev/null
+++ b/package/boot/uboot-mediatek/patches/120-use-xz-instead-of-lzma.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -1008,7 +1008,7 @@ quiet_cmd_pad_cat = CAT     $@
+ cmd_pad_cat = $(cmd_objcopy) && $(append) || { rm -f $@; false; }
+ 
+ quiet_cmd_lzma = LZMA    $@
+-cmd_lzma = lzma -c -z -k -9 $< > $@
++cmd_lzma = xz --format=lzma -c -z -k -9 $< > $@
+ 
+ cfg: u-boot.cfg
+ 



More information about the lede-commits mailing list