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@gmail.com>
This commit is contained in:
parent
bdd3c94872
commit
656ed7544f
1 changed files with 4 additions and 4 deletions
|
@ -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@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
|
||||
|
|
Loading…
Reference in a new issue