mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 14:50:15 +04:00
f9dd769052
Ethernet LAN port is set to `eth1` (silkscreen "ETH2" and case label "2") next to the 2x USB Type-A
ports and WAN is set to `eth0` (silkscreen "ETH1" and case label "1") next to the USB Type-C port.
The USER ("reset") button serves as the reset button. A short press will reboot and a long press
will reset to factory settings (deleting all data) if using squashfs image.
MASK ("maskrom") and RCRY ("recovery") buttons are enabled but are not set to any specific function
Pressing the POWER button will `poweroff` the device and it will stay off until a power cycle.
Hardware
---------------
* SoC: RockChip RK3576 64-bit ARMv8-A 8 cores big.LITTLE (4x A72 and 4x A53)
* RAM: 3/4GB LPDDR4X or 8/16GB LPDDR5
* Ethernet: 2x GbE (SoC RGMII MAC, RTL8211F PHY)
* 3x LEDs (SYS - red / 1 (WAN) - green / 2 (LAN) - green)
* 4x Buttons (MASK ("maskrom"), RCRY ("recovery"), USER ("reset" - OpenWrt reset), POWER)
* 1x 16MiB SPI NOR on board
* 1x UFS slot for optional UFS 2.0 module (currently not supported)
* 1x microSD card slot (UHS-I)
* 1x HDMI OUT
* 1x Headphone OUT 3.5mm
* 1x M.2 M-key 2280 PCIe slot (PCIe 2.1 x1 supports NVMe SSD)
* 1x M.2 E-key *SDIO* slot for optional RTL8822CS Wi-Fi 5
* the case has integrated antennae as well as 2x knockouts
* the device tree is missing the nodes relevant to Wi-Fi operations so it's not supported for now.
* 2x USB 3.2 Gen 1 Type-A Ports
* Power: 1x USB Type-C 6V-20V with both DC and USB PD supported
* Serial: 1500000 8N1 3.3V - 2.54mm 3-pin header next to HDMI
MAC addresses
---------------
WAN (`eth0` case label "1"): generated from /sys/.../mmcblk0/cid (CID of SD card)
LAN (`eth1` case label "2"): WAN + 1
Installation
---------------
Decompress the archive of the OpenWrt sysupgrade image and write it to a microSD card using `dd`
or use Balena Etcher (no need to decompress).
Boot
---------------
Insert microSD card, set boot switch to "UFS/SD" and then supply power.
Signed-off-by: Ryan Leung <untilscour@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/23008
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
498 lines
13 KiB
Makefile
498 lines
13 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2020 Sarah Maedel
|
|
|
|
define Device/rk3308
|
|
SOC := rk3308
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3328
|
|
SOC := rk3328
|
|
KERNEL_LOADADDR := 0x03200000
|
|
endef
|
|
|
|
define Device/rk3399
|
|
SOC := rk3399
|
|
KERNEL_LOADADDR := 0x03200000
|
|
endef
|
|
|
|
define Device/rk3528
|
|
SOC := rk3528
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3566
|
|
SOC := rk3566
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3568
|
|
SOC := rk3568
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3576
|
|
SOC := rk3576
|
|
KERNEL_LOADADDR := 0x43000000
|
|
endef
|
|
|
|
define Device/rk3582
|
|
SOC := rk3582
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3588
|
|
SOC := rk3588
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/rk3588s
|
|
SOC := rk3588s
|
|
KERNEL_LOADADDR := 0x03000000
|
|
endef
|
|
|
|
define Device/armsom_sige7
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := ArmSoM
|
|
DEVICE_MODEL := Sige7
|
|
DEVICE_ALT0_VENDOR := Bananapi
|
|
DEVICE_ALT0_MODEL := BPi-M7
|
|
DEVICE_DTS := rk3588-armsom-sige7
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += armsom_sige7
|
|
|
|
define Device/firefly_roc-rk3328-cc
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Firefly
|
|
DEVICE_MODEL := ROC-RK3328-CC
|
|
DEVICE_DTS := rk3328-roc-cc
|
|
UBOOT_DEVICE_NAME := roc-cc-rk3328
|
|
endef
|
|
TARGET_DEVICES += firefly_roc-rk3328-cc
|
|
|
|
define Device/friendlyarm_nanopc-t4
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPC T4
|
|
DEVICE_PACKAGES := brcmfmac-nvram-4356-sdio cypress-firmware-4356-sdio kmod-brcmfmac kmod-button-hotplug kmod-input-adc-keys
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopc-t4
|
|
|
|
define Device/friendlyarm_nanopc-t6
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPC T6
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopc-t6
|
|
|
|
define Device/friendlyarm_nanopi-m5
|
|
$(Device/rk3576)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi M5
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-button-hotplug kmod-input-adc-keys kmod-nvme
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-m5
|
|
|
|
define Device/friendlyarm_nanopi-r2c
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R2C
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r2c
|
|
|
|
define Device/friendlyarm_nanopi-r2c-plus
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R2C Plus
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r2c-plus
|
|
|
|
define Device/friendlyarm_nanopi-r2s
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R2S
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r2s
|
|
|
|
define Device/friendlyarm_nanopi-r3s
|
|
$(Device/rk3566)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R3S
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r3s
|
|
|
|
define Device/friendlyarm_nanopi-r4s
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R4S
|
|
DEVICE_VARIANT := 4GB LPDDR4
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r4s
|
|
|
|
define Device/friendlyarm_nanopi-r4s-enterprise
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R4S Enterprise Edition
|
|
DEVICE_VARIANT := 4GB LPDDR4
|
|
UBOOT_DEVICE_NAME := nanopi-r4s-rk3399
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r4s-enterprise
|
|
|
|
define Device/friendlyarm_nanopi-r5c
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R5C
|
|
DEVICE_PACKAGES := kmod-r8169 kmod-rtw88-8822ce rtl8822ce-firmware wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r5c
|
|
|
|
define Device/friendlyarm_nanopi-r5s
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R5S
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r5s
|
|
|
|
define Device/friendlyarm_nanopi-r6c
|
|
$(Device/rk3588s)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R6C
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r6c
|
|
|
|
define Device/friendlyarm_nanopi-r6s
|
|
$(Device/rk3588s)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R6S
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r6s
|
|
|
|
define Device/friendlyarm_nanopi-r76s
|
|
$(Device/rk3576)
|
|
DEVICE_VENDOR := FriendlyARM
|
|
DEVICE_MODEL := NanoPi R76S
|
|
UBOOT_DEVICE_NAME := generic-rk3576
|
|
DEVICE_PACKAGES := kmod-r8169 kmod-rtw88-8822cs wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += friendlyarm_nanopi-r76s
|
|
|
|
define Device/hinlink_h28k
|
|
$(Device/rk3528)
|
|
DEVICE_VENDOR := HINLINK
|
|
DEVICE_MODEL := H28K
|
|
DEVICE_ALT0_VENDOR := LinkStar
|
|
DEVICE_ALT0_MODEL := H28K
|
|
DEVICE_DTS := rk3528-hinlink-h28k
|
|
UBOOT_DEVICE_NAME := hinlink-h28k-rk3528
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += hinlink_h28k
|
|
|
|
define Device/hinlink_h6xk
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := HINLINK
|
|
DEVICE_PACKAGES := kmod-ata-ahci-dwc kmod-mt7921e kmod-r8169 wpad-basic-mbedtls
|
|
endef
|
|
|
|
define Device/hinlink_h66k
|
|
$(Device/hinlink_h6xk)
|
|
DEVICE_MODEL := H66K
|
|
DEVICE_DTS := rk3568-hinlink-h66k
|
|
UBOOT_DEVICE_NAME := hinlink-h66k-rk3568
|
|
endef
|
|
TARGET_DEVICES += hinlink_h66k
|
|
|
|
define Device/hinlink_h68k
|
|
$(Device/hinlink_h6xk)
|
|
DEVICE_MODEL := H68K
|
|
DEVICE_ALT0_VENDOR := LinkStar
|
|
DEVICE_ALT0_MODEL := H68K
|
|
DEVICE_DTS := rk3568-hinlink-h68k
|
|
UBOOT_DEVICE_NAME := hinlink-h68k-rk3568
|
|
endef
|
|
TARGET_DEVICES += hinlink_h68k
|
|
|
|
define Device/linkease_easepi-r1
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := LinkEase
|
|
DEVICE_MODEL := EasePi R1
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-button-hotplug kmod-input-adc-keys kmod-nvme kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += linkease_easepi-r1
|
|
|
|
define Device/lunzn_fastrhino-r66s
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := Lunzn
|
|
DEVICE_MODEL := FastRhino R66S
|
|
DEVICE_PACKAGES := kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += lunzn_fastrhino-r66s
|
|
|
|
define Device/pine64_rock64
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := Rock64
|
|
endef
|
|
TARGET_DEVICES += pine64_rock64
|
|
|
|
define Device/pine64_rockpro64
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := Pine64
|
|
DEVICE_MODEL := RockPro64
|
|
SUPPORTED_DEVICES += pine64,rockpro64-v2.1
|
|
endef
|
|
TARGET_DEVICES += pine64_rockpro64
|
|
|
|
define Device/radxa_cm3-io
|
|
$(Device/rk3566)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := CM3 IO
|
|
DEVICE_DTS := rk3566-radxa-cm3-io
|
|
UBOOT_DEVICE_NAME := radxa-cm3-io-rk3566
|
|
endef
|
|
TARGET_DEVICES += radxa_cm3-io
|
|
|
|
define Device/radxa_e20c
|
|
$(Device/rk3528)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := E20C
|
|
DEVICE_DTS := rk3528-radxa-e20c
|
|
UBOOT_DEVICE_NAME := radxa-e20c-rk3528
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += radxa_e20c
|
|
|
|
define Device/radxa_e25
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := E25
|
|
DEVICE_DTS := rk3568-radxa-e25
|
|
BOOT_SCRIPT := radxa-e25
|
|
UBOOT_DEVICE_NAME := radxa-e25-rk3568
|
|
DEVICE_PACKAGES := kmod-r8169 kmod-ata-ahci-dwc
|
|
endef
|
|
TARGET_DEVICES += radxa_e25
|
|
|
|
define Device/radxa_e52c
|
|
$(Device/rk3582)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := E52C
|
|
UBOOT_DEVICE_NAME := generic-rk3588
|
|
DEVICE_DTS := rk3582-radxa-e52c
|
|
DEVICE_PACKAGES := blkdiscard kmod-button-hotplug kmod-input-adc-keys kmod-r8169
|
|
DEVICE_COMPAT_VERSION := 1.1
|
|
DEVICE_COMPAT_MESSAGE := Network interface names have been changed
|
|
endef
|
|
TARGET_DEVICES += radxa_e52c
|
|
|
|
define Device/radxa_rock-2a
|
|
$(Device/rk3528)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 2A
|
|
UBOOT_DEVICE_NAME := rock-2-rk3528
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-2a
|
|
|
|
define Device/radxa_rock-2f
|
|
$(Device/rk3528)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 2F
|
|
UBOOT_DEVICE_NAME := rock-2-rk3528
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-2f
|
|
|
|
define Device/radxa_rock-3a
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 3A
|
|
SUPPORTED_DEVICES := radxa,rock3a
|
|
DEVICE_PACKAGES := kmod-usb-net-cdc-ncm kmod-usb-net-rndis
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-3a
|
|
|
|
define Device/radxa_rock-3b
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 3B
|
|
DEVICE_PACKAGES := kmod-usb-net-cdc-ncm kmod-usb-net-rndis
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-3b
|
|
|
|
define Device/radxa_rock-3c
|
|
$(Device/rk3566)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 3C
|
|
DEVICE_PACKAGES := kmod-usb-net-cdc-ncm kmod-usb-net-rndis
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-3c
|
|
|
|
define Device/radxa_rock-4c-plus
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 4C+
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-4c-plus
|
|
|
|
define Device/radxa_rock-4d
|
|
$(Device/rk3576)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 4D
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-4d
|
|
|
|
define Device/radxa_rock-4se
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 4SE
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-4se
|
|
|
|
define Device/radxa_rock-5-itx
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5 ITX/ITX+
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-ata-ahci kmod-button-hotplug kmod-hwmon-pwmfan kmod-input-adc-keys kmod-nvme kmod-r8169 kmod-rtw89-8852be wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5-itx
|
|
|
|
define Device/radxa_rock-5a
|
|
$(Device/rk3588s)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5A
|
|
UBOOT_DEVICE_NAME := rock5a-rk3588s
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-ata-ahci kmod-hwmon-pwmfan kmod-nvme kmod-r8169 kmod-rtw89-8852be wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5a
|
|
|
|
define Device/radxa_rock-5b
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5B
|
|
UBOOT_DEVICE_NAME := rock5b-rk3588
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-hwmon-pwmfan kmod-nvme kmod-r8169 kmod-rtw89-8852be wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5b
|
|
|
|
define Device/radxa_rock-5b-plus
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5B+
|
|
UBOOT_DEVICE_NAME := generic-rk3588
|
|
DEVICE_DTS := rk3588-rock-5b-plus
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-hwmon-pwmfan kmod-nvme kmod-r8169 kmod-rtw89-8852be wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5b-plus
|
|
|
|
define Device/radxa_rock-5c
|
|
$(Device/rk3588s)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5C/5C Lite
|
|
DEVICE_PACKAGES := blkdiscard block-mount kmod-ata-ahci kmod-hwmon-pwmfan kmod-nvme kmod-r8169
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5c
|
|
|
|
define Device/radxa_rock-5t
|
|
$(Device/rk3588)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK 5T
|
|
UBOOT_DEVICE_NAME := generic-rk3588
|
|
DEVICE_DTS := rk3588-rock-5t
|
|
DEVICE_PACKAGES := blkdiscard block-mount iwlwifi-firmware-ax210 kmod-hwmon-pwmfan kmod-iwlwifi kmod-nvme kmod-r8169 wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-5t
|
|
|
|
define Device/radxa_rock-pi-4a
|
|
$(Device/rk3399)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi 4A
|
|
SUPPORTED_DEVICES := radxa,rockpi4a radxa,rockpi4
|
|
UBOOT_DEVICE_NAME := rock-pi-4-rk3399
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-4a
|
|
|
|
define Device/radxa_rock-pi-e
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi E
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-e
|
|
|
|
define Device/radxa_rock-pi-e-v3
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi E v3.0
|
|
DEVICE_DTS := rk3328-rock-pi-e
|
|
DEVICE_PACKAGES := kmod-button-hotplug kmod-input-adc-keys kmod-rtw88-8723du kmod-rtw88-8821cu kmod-usb-net-cdc-ncm kmod-usb-net-rndis wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-e-v3
|
|
|
|
define Device/radxa_rock-pi-s
|
|
$(Device/rk3308)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ROCK Pi S
|
|
SUPPORTED_DEVICES := radxa,rockpis
|
|
BOOT_SCRIPT := rock-pi-s
|
|
DEVICE_PACKAGES := kmod-rtw88-8723ds kmod-usb-net-cdc-ncm kmod-usb-net-rndis wpad-basic-mbedtls
|
|
endef
|
|
TARGET_DEVICES += radxa_rock-pi-s
|
|
|
|
define Device/radxa_zero-3e
|
|
$(Device/rk3566)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ZERO 3E
|
|
DEVICE_DTS := rk3566-radxa-zero-3e
|
|
UBOOT_DEVICE_NAME := radxa-zero-3-rk3566
|
|
DEVICE_PACKAGES := kmod-usb-net-cdc-ncm kmod-usb-net-rndis
|
|
endef
|
|
TARGET_DEVICES += radxa_zero-3e
|
|
|
|
define Device/radxa_zero-3w
|
|
$(Device/rk3566)
|
|
DEVICE_VENDOR := Radxa
|
|
DEVICE_MODEL := ZERO 3W
|
|
DEVICE_DTS := rk3566-radxa-zero-3w
|
|
UBOOT_DEVICE_NAME := radxa-zero-3-rk3566
|
|
DEVICE_PACKAGES := kmod-usb-net-cdc-ncm kmod-usb-net-rndis
|
|
endef
|
|
TARGET_DEVICES += radxa_zero-3w
|
|
|
|
define Device/sinovoip_bpi-r2-pro
|
|
$(Device/rk3568)
|
|
DEVICE_VENDOR := Sinovoip
|
|
DEVICE_MODEL := Bananapi-R2 Pro
|
|
SUPPORTED_DEVICES := sinovoip,rk3568-bpi-r2pro
|
|
DEVICE_PACKAGES := kmod-ata-ahci-dwc
|
|
endef
|
|
TARGET_DEVICES += sinovoip_bpi-r2-pro
|
|
|
|
define Device/xunlong_orangepi-r1-plus
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi R1 Plus
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-r1-plus
|
|
|
|
define Device/xunlong_orangepi-r1-plus-lts
|
|
$(Device/rk3328)
|
|
DEVICE_VENDOR := Xunlong
|
|
DEVICE_MODEL := Orange Pi R1 Plus LTS
|
|
DEVICE_PACKAGES := kmod-usb-net-rtl8152
|
|
endef
|
|
TARGET_DEVICES += xunlong_orangepi-r1-plus-lts
|