mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-14 17:47:04 +00:00
51e9aa6ace
The Gemini works fine with kernel v6.6. As per the example for ipq806x, drop support for anything older than v6.6, there is no point in supporting it, and the new DTS SoC directory just makes it hard to maintain. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
31 lines
611 B
Makefile
31 lines
611 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:=6.6
|
|
|
|
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))
|