mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
02e8182d87
Specification: - CPU: Allwinner H5, Quad-core Cortex-A53 Up to 1GHz - DDR3 RAM: 2GB - Network: 10/100M Ethernet x 1 - IR: x1 (Receive) - USB (Host) Type-A x3 - USB (OTG) Type-A x1 - MicroSD Slot x 1 - eMMC Slot x1 - MicroUSB power input - GPIO 40pin header - UART 3pin header - Leds: - librecomputer:blue:status - librecomputer:green:pwr - Buttons: - uboot button (used to enter fel mode) - power button (can trigger power on) - Power Supply via MicroUSB or GPIO 5V/2A Installation: - Write the image to SD Card with dd - Boot from the SD Card Signed-off-by: Roman Kuzmitskii <damex.pp@icloud.com> [Fixed Signed-off-by] Signed-off-by: Petr Štetiar <ynezz@true.cz>
96 lines
2.3 KiB
Makefile
96 lines
2.3 KiB
Makefile
#
|
|
# Copyright (C) 2013-2016 OpenWrt.org
|
|
# Copyright (C) 2016 Yousong Zhou
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Device/sun50i
|
|
SUNXI_DTS_DIR := allwinner/
|
|
KERNEL_NAME := Image
|
|
KERNEL := kernel-bin
|
|
endef
|
|
|
|
define Device/sun50i-h5
|
|
SOC := sun50i-h5
|
|
$(Device/sun50i)
|
|
endef
|
|
|
|
define Device/sun50i-a64
|
|
SOC := sun50i-a64
|
|
$(Device/sun50i)
|
|
endef
|
|
|
|
define Device/friendlyarm_nanopi-neo-plus2
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi NEO Plus2
|
|
SUPPORTED_DEVICES:=nanopi-neo-plus2
|
|
$(Device/sun50i-h5)
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-neo-plus2
|
|
|
|
define Device/friendlyarm_nanopi-neo2
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi NEO2
|
|
SUPPORTED_DEVICES:=nanopi-neo2
|
|
$(Device/sun50i-h5)
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-neo2
|
|
|
|
define Device/libretech_all-h3-cc-h5
|
|
DEVICE_VENDOR := Libre Computer
|
|
DEVICE_MODEL := ALL-H3-CC
|
|
DEVICE_VARIANT := H5
|
|
$(Device/sun50i-h5)
|
|
SUNXI_DTS := $$(SUNXI_DTS_DIR)$$(SOC)-libretech-all-h3-cc
|
|
endef
|
|
TARGET_DEVICES += libretech_all-h3-cc-h5
|
|
|
|
define Device/olimex_a64-olinuxino
|
|
DEVICE_VENDOR := Olimex
|
|
DEVICE_MODEL := A64-Olinuxino
|
|
DEVICE_PACKAGES := kmod-rtl8723bs rtl8723bs-firmware
|
|
$(Device/sun50i-a64)
|
|
SUNXI_DTS := $$(SUNXI_DTS_DIR)$$(SOC)-olinuxino
|
|
endef
|
|
TARGET_DEVICES += olimex_a64-olinuxino
|
|
|
|
define Device/olimex_a64-olinuxino-emmc
|
|
DEVICE_VENDOR := Olimex
|
|
DEVICE_MODEL := A64-Olinuxino
|
|
DEVICE_VARIANT := eMMC
|
|
DEVICE_PACKAGES := kmod-rtl8723bs rtl8723bs-firmware
|
|
$(Device/sun50i-a64)
|
|
SUNXI_DTS := $$(SUNXI_DTS_DIR)$$(SOC)-olinuxino-emmc
|
|
endef
|
|
TARGET_DEVICES += olimex_a64-olinuxino-emmc
|
|
|
|
define Device/pine64_pine64-plus
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := Pine64+
|
|
$(Device/sun50i-a64)
|
|
endef
|
|
TARGET_DEVICES += pine64_pine64-plus
|
|
|
|
define Device/pine64_sopine-baseboard
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := SoPine
|
|
$(Device/sun50i-a64)
|
|
endef
|
|
TARGET_DEVICES += pine64_sopine-baseboard
|
|
|
|
define Device/xunlong_orangepi-pc2
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi PC 2
|
|
$(Device/sun50i-h5)
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-pc2
|
|
|
|
define Device/xunlong_orangepi-zero-plus
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi Zero Plus
|
|
$(Device/sun50i-h5)
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-zero-plus
|