mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-10-30 03:28:50 +00:00
This is Allwinner's ARM926EJ-S core, which is one of its early products, reappearing in recent compact designs. The SoC includes 32/64Mb memory in the same physical package, and has display and USB interfaces, allowing for very small footprint boards. The target consists of basic 6.12 support, with u-boot. Instead of creating a separate suniv target, as both the kernel and u-boot supports enough of this SoC by now with minimal patching, add it into sunxi as a subtarget. Link: https://github.com/openwrt/openwrt/pull/15022 Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
27 lines
598 B
Makefile
27 lines
598 B
Makefile
#
|
|
# Copyright (C) 2013-2024 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
KERNEL_LOADADDR=0x81000000
|
|
|
|
define Device/licheepi-nano
|
|
$(call Device/FitImageGzip)
|
|
DEVICE_VENDOR := LicheePi
|
|
DEVICE_MODEL := Nano
|
|
DEVICE_PACKAGES := kmod-rtc-sunxi
|
|
SOC := suniv-f1c100s
|
|
endef
|
|
TARGET_DEVICES += licheepi-nano
|
|
|
|
define Device/popstick-v1.1
|
|
$(call Device/FitImageGzip)
|
|
DEVICE_VENDOR := PopStick
|
|
DEVICE_MODEL := v1.1
|
|
DEVICE_PACKAGES := kmod-rtc-sunxi
|
|
SOC := suniv-f1c200s
|
|
endef
|
|
TARGET_DEVICES += popstick-v1.1
|