diff options
| author | Zeyu Dong | 2026-01-24 18:51:50 +0000 |
|---|---|---|
| committer | Robert Marko | 2026-01-25 21:15:48 +0000 |
| commit | 979f70cc7ec6cec28d9f3d1ec6a4ef54fd265dc2 (patch) | |
| tree | b61f7a40d09634b2ad6447c1d69a48b287b47cf4 | |
| parent | 561a8858f55b830e285526e96bb375d5c96f1bd9 (diff) | |
| download | openwrt-979f70cc7ec6cec28d9f3d1ec6a4ef54fd265dc2.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>
| -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 79d2c80a17..3849197ec1 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 |