mirror of
				https://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 23:25:49 +00:00 
			
		
		
		
	It builds now. Tested on Cisco Meraki MX60W. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/18798 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
		
			
				
	
	
		
			28 lines
		
	
	
		
			550 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			550 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| 
 | |
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| ARCH:=powerpc
 | |
| BOARD:=apm821xx
 | |
| BOARDNAME:=AppliedMicro APM821xx
 | |
| CPU_TYPE:=464fp
 | |
| FEATURES:=fpu dt gpio ramdisk squashfs usb
 | |
| SUBTARGETS:=nand sata
 | |
| 
 | |
| KERNEL_PATCHVER:=6.6
 | |
| KERNEL_TESTING_PATCHVER:=6.12
 | |
| 
 | |
| define Target/Description
 | |
| 	Build images for AppliedMicro APM821xx based boards.
 | |
| endef
 | |
| 
 | |
| include $(INCLUDE_DIR)/target.mk
 | |
| 
 | |
| KERNELNAME:=uImage
 | |
| 
 | |
| DEFAULT_PACKAGES += \
 | |
| 	kmod-leds-gpio kmod-i2c-core kmod-gpio-button-hotplug uboot-envtools \
 | |
| 	kmod-hw-crypto-4xx
 | |
| 
 | |
| $(eval $(call BuildTarget))
 |