[source] ar71xx: fix EnGenius ENS202EXT mtd definition

LEDE Commits lede-commits at lists.infradead.org
Thu Jun 29 02:19:16 PDT 2017


pepe2k pushed a commit to source.git, branch master:
https://git.lede-project.org/656ed7544fb625756ed8969927b976b0e0120ecb

commit 656ed7544fb625756ed8969927b976b0e0120ecb
Author: Piotr Dymacz <pepe2k at gmail.com>
AuthorDate: Wed Jun 14 15:23:35 2017 +0200

    ar71xx: fix EnGenius ENS202EXT mtd definition
    
    Use statically defined sizes for kernel and rootfs mtd partitions.
    Vendor upgrade script writes both firmware parts independently which
    ends up in a gap between kernel and rootfs images. This results in
    incorrectly calculated rootfs_data start offset.
    
    Also, fix IMAGE_SIZE, DEVICE_PACKAGES and drop redundant KERNEL
    definition.
    
    Fixes FS#835
    
    Signed-off-by: Piotr Dymacz <pepe2k at gmail.com>
---
 target/linux/ar71xx/image/senao.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/target/linux/ar71xx/image/senao.mk b/target/linux/ar71xx/image/senao.mk
index 57e3610..dbb7b69 100644
--- a/target/linux/ar71xx/image/senao.mk
+++ b/target/linux/ar71xx/image/senao.mk
@@ -20,12 +20,12 @@ endef
 define Device/ens202ext
   DEVICE_TITLE := EnGenius ENS202EXT
   BOARDNAME := ENS202EXT
-  DEVICE_PACKAGES += rssileds
+  DEVICE_PACKAGES := rssileds
   KERNEL_SIZE := 1536k
-  KERNEL := kernel-bin | patch-cmdline | lzma | uImage lzma | check-size $$(KERNEL_SIZE)
-  IMAGE_SIZE := 12096k
+  IMAGE_SIZE := 13632k
   IMAGES += factory.bin
+  MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env),320k(custom)ro,1536k(kernel),12096k(rootfs),2048k(failsafe)ro,64k(art)ro,13632k at 0xa0000(firmware)
   IMAGE/factory.bin/squashfs := append-rootfs | pad-rootfs | senao-factory-image ens202ext $$$$@
-  MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env),320k(custom)ro,13632k(firmware),2048k(failsafe)ro,64k(art)ro
+  IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
 endef
 TARGET_DEVICES += ens202ext



More information about the lede-commits mailing list