diff options
| author | Zeyu Dong | 2026-01-24 18:51:50 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-01-25 21:16:19 +0000 |
| commit | 1d87d1f5aaaa3032eafa785abc4cbaf2c3556638 (patch) | |
| tree | 045be499fcf101eb4f9bf9d0d20f6800bbf06228 | |
| parent | fc40e08c5b9194057ea854dd9737c2d7db701efe (diff) | |
| download | openwrt-1d87d1f5aaaa3032eafa785abc4cbaf2c3556638.tar.gz | |
ipq40xx: fix image pipeline for MR6350
Add two missing $$ in the factory image build pipeline for MR6350
Signed-off-by: Zeyu Dong <dzy201415@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21682
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 979f70cc7ec6cec28d9f3d1ec6a4ef54fd265dc2)
| -rw-r--r-- | target/linux/ipq40xx/image/generic.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ipq40xx/image/generic.mk b/target/linux/ipq40xx/image/generic.mk index 1d02a2fc1f..1ede90bc07 100644 --- a/target/linux/ipq40xx/image/generic.mk +++ b/target/linux/ipq40xx/image/generic.mk @@ -726,7 +726,7 @@ define Device/linksys_mr6350 PAGESIZE := 2048 UBINIZE_OPTS := -E 5 # EOD marks to "hide" factory sig at EOF IMAGES += factory.bin - IMAGE/factory.bin := append-kernel | pad-to $$(KERNEL_SIZE) | append-ubi | linksys-image type=MR6350 + IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=MR6350 DEVICE_PACKAGES := ipq-wifi-linksys_mr6350 kmod-usb-ledtrig-usbport endef TARGET_DEVICES += linksys_mr6350 |