It has been used by several people for some time already and feedback has been mostly positive. Ref: https://github.com/openwrt/openwrt/pull/2472 Tested-by: Hannu Nyman <hannu.nyman@iki.fi> [ipq8065, R7800] Tested-by: Stefan Lippers-Hollmann <s.l-h@gmx.de> [ipq8065, NBG6817] Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com> [separate commit, commit subject and description facelift] Signed-off-by: Petr Štetiar <ynezz@true.cz>
		
			
				
	
	
		
			28 lines
		
	
	
		
			697 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			697 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Copyright (c) 2013 The Linux Foundation. All rights reserved.
 | 
						|
#
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
ARCH:=arm
 | 
						|
BOARD:=ipq806x
 | 
						|
BOARDNAME:=Qualcomm Atheros IPQ806X
 | 
						|
FEATURES:=squashfs nand fpu ramdisk
 | 
						|
CPU_TYPE:=cortex-a15
 | 
						|
CPU_SUBTYPE:=neon-vfpv4
 | 
						|
MAINTAINER:=John Crispin <john@phrozen.org>
 | 
						|
SUBTARGETS:=generic
 | 
						|
 | 
						|
KERNEL_PATCHVER:=4.19
 | 
						|
 | 
						|
KERNELNAME:=zImage Image dtbs
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/target.mk
 | 
						|
DEFAULT_PACKAGES += \
 | 
						|
	kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
 | 
						|
	kmod-ata-core kmod-ata-ahci kmod-ata-ahci-platform \
 | 
						|
	kmod-usb-ohci kmod-usb2 kmod-usb-ledtrig-usbport \
 | 
						|
	kmod-usb-phy-qcom-dwc3 kmod-usb3 kmod-usb-dwc3-qcom \
 | 
						|
	kmod-ath10k-ct wpad-basic \
 | 
						|
	uboot-envtools
 | 
						|
 | 
						|
$(eval $(call BuildTarget))
 |