860de2e1aa
The bump to kernel 4.14 caused a massive increase in kernel size. For most targets, switching them to dynamic partitioning allowed to cope with this. On some targets, the kernel partition is located behind the rootfs, which disallows switching to dynamic partitioning as the boot location would be altered, requiring a u-boot change. Also within the tiny section, which disables kernel symbols etc to decrease the image size, the partition size is still too small. Disable these targets for now, fixing image generation: - Buffalo BHR-4GRV2 - Zbtlink ZBT-WE1526 Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
22 lines
1,008 B
Makefile
22 lines
1,008 B
Makefile
define Device/bhr-4grv2
|
|
DEVICE_TITLE := Buffalo BHR-4GRV2
|
|
BOARDNAME := BHR-4GRV2
|
|
ROOTFS_SIZE := 14528k
|
|
KERNEL_SIZE := 1472k
|
|
IMAGE_SIZE := 16000k
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,14528k(rootfs),1472k(kernel),64k(art)ro,16000k@0x50000(firmware)
|
|
IMAGES := sysupgrade.bin factory.bin
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to $$$$(ROOTFS_SIZE) | append-kernel | check-size $$$$(IMAGE_SIZE)
|
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | mkbuffaloimg
|
|
endef
|
|
|
|
define Device/zbt-we1526
|
|
DEVICE_TITLE := Zbtlink ZBT-WE1526
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb2
|
|
BOARDNAME := ZBT-WE1526
|
|
IMAGE_SIZE := 16000k
|
|
KERNEL_SIZE := 1472k
|
|
ROOTFS_SIZE := 14528k
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,14528k(rootfs),1472k(kernel),64k(art)ro,16000k@0x50000(firmware)
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to $$$$(ROOTFS_SIZE) | append-kernel | check-size $$$$(IMAGE_SIZE)
|
|
endef
|