diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-07-20 08:57:23 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-07-20 08:57:23 +0200 |
commit | 2938d6530a485912ceb39d271cac8133e06e8ac0 (patch) | |
tree | 30ed5620bf2ba4da52c329ef434d7ca9661f7f4d /target/linux/ath25 | |
parent | 6d59f4eeb4c3d49257379499c8a43eea058f4d51 (diff) | |
download | upstream-2938d6530a485912ceb39d271cac8133e06e8ac0.tar.gz upstream-2938d6530a485912ceb39d271cac8133e06e8ac0.tar.bz2 upstream-2938d6530a485912ceb39d271cac8133e06e8ac0.zip |
ath25: disable image generation for ubnt2 and ubnt5 devices
Image generations is currently failing on builbots due to the following
errors:
mkfwimage -B XS2 -v XS2 [...] ath25-ubnt2-squashfs-sysupgrade.bin
ERROR: Failed creating firmware layout description - error code: -2
mkfwimage -B XS5 -v XS5 [...] ath25-ubnt5-squashfs-sysupgrade.bin
ERROR: Failed creating firmware layout description - error code: -2
That cryptic -2 error simply means, that kernel+rootfs doesn't fit into
the firmware partition.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'target/linux/ath25')
-rw-r--r-- | target/linux/ath25/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath25/image/Makefile b/target/linux/ath25/image/Makefile index 5a20bdb644..ee5e74e692 100644 --- a/target/linux/ath25/image/Makefile +++ b/target/linux/ath25/image/Makefile @@ -82,13 +82,13 @@ define Device/ubnt2 DEVICE_TITLE := Ubiquiti XS2 IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS2 -v XS2.ar2316 endef -TARGET_DEVICES += ubnt2 +#TARGET_DEVICES += ubnt2 define Device/ubnt5 DEVICE_TITLE := Ubiquiti XS5 IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS5 -v XS5.ar2313 endef -TARGET_DEVICES += ubnt5 +#TARGET_DEVICES += ubnt5 define Device/np25g DEVICE_TITLE := np25g |