gluon/targets/ath79-nand
Julian Labus cdf4b3bb1f
ath79: disable testing kernel in nand subtarget
the testing kernel 5.10 is to big to fit in the kernel partition
of the ZyXEL NBG6716
2021-04-14 08:58:11 +02:00

29 lines
592 B
Plaintext

config('TESTING_KERNEL', false)
local ATH10K_PACKAGES_QCA9880 = {
'kmod-ath10k',
'-kmod-ath10k-ct',
'-kmod-ath10k-ct-smallbuffers',
'ath10k-firmware-qca988x',
'-ath10k-firmware-qca988x-ct',
}
local ATH10K_PACKAGES_QCA9887 = {
'kmod-ath10k',
'-kmod-ath10k-ct',
'-kmod-ath10k-ct-smallbuffers',
'ath10k-firmware-qca9887',
'-ath10k-firmware-qca9887-ct',
}
device('gl.inet-gl-ar750s-nor', 'glinet_gl-ar750s-nor', {
factory = false,
packages = ATH10K_PACKAGES_QCA9887,
})
device('zyxel-nbg6716', 'zyxel_nbg6716', {
sysupgrade_ext = '.tar',
packages = ATH10K_PACKAGES_QCA9880,
})