mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-18 12:54:39 +00:00
579703f38c
The 5.15 kernel has new interesting features like MGLRU. Most of the targets already have added support for testing kernel 5.15 since April 2022. Set 5.15 as default for all subtargets. Testing support was added here: -ae6bfb7d67
("ath79: tiny: add 5.15 support for tiny subtarget") -9a0155bc4f
("ath79: add 5.15 support for generic subtarget") -5af9aafabb
("ath79: mikrotik: add 5.15 support for mikrotik subtarget") -f3fa68e515
("ath79: nand: add 5.15 support for nand subtarget") Tested on: - Nanostation M5 XM (tiny) - TP-Link EAP-225 Outdoor (generic) - TP-Link CPE210 (generic) Signed-off-by: Nick Hainke <vincent@systemli.org>
20 lines
342 B
Makefile
20 lines
342 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=mips
|
|
BOARD:=ath79
|
|
BOARDNAME:=Atheros ATH79
|
|
CPU_TYPE:=24kc
|
|
SUBTARGETS:=generic mikrotik nand tiny
|
|
|
|
FEATURES:=ramdisk squashfs usbgadget
|
|
|
|
KERNEL_PATCHVER:=5.15
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += \
|
|
kmod-gpio-button-hotplug swconfig \
|
|
kmod-ath9k uboot-envtools
|
|
|
|
$(eval $(call BuildTarget))
|