mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-09 12:46:21 +00:00
The qualcommbe target was introduced after openwrt-24.10. The v6.12 kernel is now available, and is likely to be used by the next openwrt release.While the v6.6 kernel served as an interim development vehicle, it is no longer useful for the qualcommbe target The v6.12 patches contain more recent submissions of pending ipq95xx drivers. I expect that it will be much easier to update v6.12 patches with new submissions. For ease of maintenance, it makes sense to use a single kernel for qualcommbe. For these reasons, enable v6.12 by default. Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Link: https://github.com/openwrt/openwrt/pull/18982 Signed-off-by: Robert Marko <robimarko@gmail.com>
21 lines
487 B
Makefile
21 lines
487 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=aarch64
|
|
BOARD:=qualcommbe
|
|
BOARDNAME:=Qualcomm Atheros 802.11be WiSoC-s
|
|
FEATURES:=squashfs ramdisk fpu nand rtc emmc source-only
|
|
KERNELNAME:=Image
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=ipq95xx
|
|
|
|
KERNEL_PATCHVER:=6.12
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
DEFAULT_PACKAGES += \
|
|
kmod-usb3 kmod-usb-dwc3 kmod-usb-dwc3-qcom \
|
|
kmod-leds-gpio kmod-gpio-button-hotplug \
|
|
wpad-basic-mbedtls uboot-envtools \
|
|
e2fsprogs kmod-fs-ext4 losetup
|
|
|
|
$(eval $(call BuildTarget))
|