uboot-mediatek: don't rely in 'lzma' cmdline
Use 'xz --format=lzma' instead. Fixes build for mt7629. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
42d943f40a
commit
81edc842f6
@ -7,8 +7,6 @@ Subject: [PATCH] ahci: mediatek: fix missing dev_err definition
|
|||||||
drivers/ata/mtk_ahci.c | 1 +
|
drivers/ata/mtk_ahci.c | 1 +
|
||||||
1 file changed, 1 insertion(+)
|
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
|
--- a/drivers/ata/mtk_ahci.c
|
||||||
+++ b/drivers/ata/mtk_ahci.c
|
+++ b/drivers/ata/mtk_ahci.c
|
||||||
@@ -21,6 +21,7 @@
|
@@ -21,6 +21,7 @@
|
||||||
@ -19,6 +17,3 @@ index 554175bc00..2c5227df30 100644
|
|||||||
|
|
||||||
#define SYS_CFG 0x14
|
#define SYS_CFG 0x14
|
||||||
#define SYS_CFG_SATA_MSK GENMASK(31, 30)
|
#define SYS_CFG_SATA_MSK GENMASK(31, 30)
|
||||||
--
|
|
||||||
2.30.2
|
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user