diff options
| author | Shiji Yang | 2024-07-06 10:27:19 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-04-10 19:28:55 +0000 |
| commit | 86dfa171015d1dd94dc735ae0c57e9e2962914fa (patch) | |
| tree | 92f86bcf1745d21851f44f9a2944082beb6075a3 | |
| parent | dfdeda4b85c81bec22d5ce6f4ef9646d9b6974ba (diff) | |
| download | openwrt-86dfa171015d1dd94dc735ae0c57e9e2962914fa.tar.gz | |
ramips: fix image recipe for ASUS RT-N56U
The OpenWrt image metadata includes checksum validation. Therefore,
it must be generated at the end.
Fixes: https://github.com/openwrt/openwrt/issues/9045
Fixes: https://github.com/openwrt/openwrt/issues/13674
Link: https://patchwork.ozlabs.org/project/openwrt/patch/TYCP286MB08952FAACDFA234C5E052131BCD82@TYCP286MB0895.JPNP286.PROD.OUTLOOK.COM/
Signed-off-by: Shiji Yang <yangshiji66@qq.com>
Signed-off-by: Luke Morrison <lfmorrison@gmail.com>
(cherry picked from commit 708b77f549e852d5156acde03cc76942da29494a)
Link: https://github.com/openwrt/openwrt/pull/17678
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ramips/image/rt3883.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/ramips/image/rt3883.mk b/target/linux/ramips/image/rt3883.mk index 0430099296..1728f84444 100644 --- a/target/linux/ramips/image/rt3883.mk +++ b/target/linux/ramips/image/rt3883.mk @@ -8,7 +8,8 @@ endef define Device/asus_rt-n56u SOC := rt3662 IMAGE_SIZE := 7872k - IMAGE/sysupgrade.bin += | mkrtn56uimg -s + IMAGE/sysupgrade.bin := $$(sysupgrade_bin) | check-size | \ + mkrtn56uimg -s | append-metadata DEVICE_VENDOR := ASUS DEVICE_MODEL := RT-N56U DEVICE_PACKAGES := kmod-usb-ohci kmod-usb2 |