Currently, ipq807x only covers Qualcomm IPQ807x SoC-s. However, Qualcomm also has IPQ60xx and IPQ50xx SoC-s under the AX WiSoC-s and they share a lot of stuff with IPQ807x, especially IPQ60xx so to avoid duplicating kernel patches and everything lets make a common target with per SoC subtargets. Start doing that by renaming ipq807x to qualcommax so that dependencies on ipq807x target can be updated. Signed-off-by: Robert Marko <robimarko@gmail.com>
23 lines
559 B
Makefile
23 lines
559 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=aarch64
|
|
BOARD:=qualcommax
|
|
BOARDNAME:=Qualcomm Atheros 802.11ax WiSoC-s
|
|
FEATURES:=squashfs ramdisk fpu nand rtc emmc
|
|
KERNELNAME:=Image dtbs
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=6.1
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
DEFAULT_PACKAGES += \
|
|
kmod-usb3 kmod-usb-dwc3 kmod-usb-dwc3-qcom \
|
|
kmod-leds-gpio kmod-gpio-button-hotplug \
|
|
kmod-phy-aquantia kmod-qca-nss-dp \
|
|
ath11k-firmware-ipq8074 kmod-ath11k-ahb \
|
|
wpad-basic-mbedtls uboot-envtools \
|
|
e2fsprogs kmod-fs-ext4 losetup
|
|
|
|
$(eval $(call BuildTarget))
|