mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Same game as for 853e4dd306. Add generic
to the filenames.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
		
	
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			612 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			612 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0-only
 | 
						|
#
 | 
						|
# Copyright (C) 2009-2018 OpenWrt.org
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
ARCH:=arm
 | 
						|
BOARD:=gemini
 | 
						|
BOARDNAME:=Cortina Systems CS351x
 | 
						|
FEATURES:=squashfs pci rtc usb dt gpio display ext4 rootfs-part boot-part
 | 
						|
CPU_TYPE:=fa526
 | 
						|
SUBTARGETS:=generic
 | 
						|
 | 
						|
KERNEL_PATCHVER:=5.15
 | 
						|
 | 
						|
define Target/Description
 | 
						|
	Build firmware images for the StorLink/Cortina Gemini CS351x ARM FA526 CPU
 | 
						|
endef
 | 
						|
 | 
						|
KERNELNAME:=zImage dtbs
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/target.mk
 | 
						|
 | 
						|
DEFAULT_PACKAGES += \
 | 
						|
	kmod-usb-fotg210 \
 | 
						|
	kmod-usb-ledtrig-usbport \
 | 
						|
	kmod-leds-gpio \
 | 
						|
	kmod-gpio-button-hotplug
 | 
						|
 | 
						|
$(eval $(call BuildTarget))
 |