From: Shiji Yang Date: Thu, 4 Mar 2021 09:59:14 +0000 (+0800) Subject: ramips: fix IMAGE_SIZE of HC5x6: fix image size of HC5x61 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=dfc9044fadfc69334745d32754414bc37e593207;p=openwrt%2Fstaging%2Fldir.git ramips: fix IMAGE_SIZE of HC5x6: fix image size of HC5x61 "firmware" partition size defined in the device tree file is 0xf70000, so the right IMAGE_SIZE is 15808k Fixes: df1e5d646345 ("ramips: fix partition layout of hiwifi hc5x61") Signed-off-by: Shiji Yang --- diff --git a/target/linux/ramips/image/mt7620.mk b/target/linux/ramips/image/mt7620.mk index 327df51e58..64dc0715ed 100644 --- a/target/linux/ramips/image/mt7620.mk +++ b/target/linux/ramips/image/mt7620.mk @@ -448,7 +448,7 @@ TARGET_DEVICES += head-weblink_hdrm200 define Device/hiwifi_hc5661 SOC := mt7620a - IMAGE_SIZE := 15872k + IMAGE_SIZE := 15808k DEVICE_VENDOR := HiWiFi DEVICE_MODEL := HC5661 DEVICE_PACKAGES := kmod-sdhci-mt7620 @@ -458,7 +458,7 @@ TARGET_DEVICES += hiwifi_hc5661 define Device/hiwifi_hc5761 SOC := mt7620a - IMAGE_SIZE := 15872k + IMAGE_SIZE := 15808k DEVICE_VENDOR := HiWiFi DEVICE_MODEL := HC5761 DEVICE_PACKAGES := kmod-mt76x0e kmod-usb2 kmod-usb-ohci kmod-sdhci-mt7620 \ @@ -469,7 +469,7 @@ TARGET_DEVICES += hiwifi_hc5761 define Device/hiwifi_hc5861 SOC := mt7620a - IMAGE_SIZE := 15872k + IMAGE_SIZE := 15808k DEVICE_VENDOR := HiWiFi DEVICE_MODEL := HC5861 DEVICE_PACKAGES := kmod-mt76x2 kmod-usb2 kmod-usb-ohci kmod-sdhci-mt7620 \