diff options
author | Sungbo Eo <mans0n@gorani.run> | 2022-09-18 10:13:56 +0900 |
---|---|---|
committer | Sungbo Eo <mans0n@gorani.run> | 2022-09-18 21:33:50 +0900 |
commit | f0ea3df439c796dc6d4e5fee1cc6a15e7fed8085 (patch) | |
tree | 71bb591b4dcd0e3fdca9fcc11eeca9fcdb9b68ba /target/linux | |
parent | c77858aa79265a3fb57800bf147e2c6efacdb7f7 (diff) | |
download | upstream-f0ea3df439c796dc6d4e5fee1cc6a15e7fed8085.tar.gz upstream-f0ea3df439c796dc6d4e5fee1cc6a15e7fed8085.tar.bz2 upstream-f0ea3df439c796dc6d4e5fee1cc6a15e7fed8085.zip |
ipq40xx: disable devices with 3MiB kernel size
The image builds for Linksys EA6350 v3, EA8300, and MR8300 currently
fail on buildbots due to the KERNEL_SIZE, as stated in commit
17b7756b5a20 ("ipq40xx: 5.15: add testing kernel version"). Disable
these boards for now.
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ipq40xx/image/generic.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/image/generic.mk b/target/linux/ipq40xx/image/generic.mk index 8e15f7ea20..dfb235c8d5 100644 --- a/target/linux/ipq40xx/image/generic.mk +++ b/target/linux/ipq40xx/image/generic.mk @@ -640,6 +640,7 @@ define Device/linksys_ea6350v3 UBINIZE_OPTS := -E 5 IMAGES += factory.bin IMAGE/factory.bin := append-kernel | append-uImage-fakehdr filesystem | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=EA6350v3 + DEFAULT := n endef TARGET_DEVICES += linksys_ea6350v3 @@ -656,6 +657,7 @@ define Device/linksys_ea8300 IMAGES += factory.bin IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=EA8300 DEVICE_PACKAGES := ath10k-firmware-qca9888-ct ipq-wifi-linksys_ea8300 kmod-usb-ledtrig-usbport + DEFAULT := n endef TARGET_DEVICES += linksys_ea8300 @@ -672,6 +674,7 @@ define Device/linksys_mr8300 IMAGES += factory.bin IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=MR8300 DEVICE_PACKAGES := ath10k-firmware-qca9888-ct kmod-usb-ledtrig-usbport + DEFAULT := n endef TARGET_DEVICES += linksys_mr8300 |