diff options
author | Roman Kuzmitskii <damex.pp@icloud.com> | 2020-10-18 18:05:23 +0000 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-11-12 18:21:17 +0100 |
commit | 02e8182d87945729eafe5ce1c7992a0c132eae61 (patch) | |
tree | bf919e686d119f56bebd492faa5c4fd574700d28 /package | |
parent | 3c5d70ad26ed8ba54b558bbfbceaedee5d9a1ca5 (diff) | |
download | upstream-02e8182d87945729eafe5ce1c7992a0c132eae61.tar.gz upstream-02e8182d87945729eafe5ce1c7992a0c132eae61.tar.bz2 upstream-02e8182d87945729eafe5ce1c7992a0c132eae61.zip |
sunxi: add support for Libre Computer ALL-H3-CC H5
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>
Diffstat (limited to 'package')
-rw-r--r-- | package/boot/uboot-sunxi/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/package/boot/uboot-sunxi/Makefile b/package/boot/uboot-sunxi/Makefile index 58a5923eab..859a06019b 100644 --- a/package/boot/uboot-sunxi/Makefile +++ b/package/boot/uboot-sunxi/Makefile @@ -226,6 +226,14 @@ define U-Boot/pangolin UENV:=pangolin endef +define U-Boot/libretech_all_h3_cc_h5 + BUILD_SUBTARGET:=cortexa53 + NAME:=Libre Computer ALL-H3-CC H5 + BUILD_DEVICES:=libretech_all-h3-cc-h5 + DEPENDS:=+PACKAGE_u-boot-libretech_all_h3_cc_h5:arm-trusted-firmware-sunxi + UENV:=a64 +endef + define U-Boot/nanopi_neo_plus2 BUILD_SUBTARGET:=cortexa53 NAME:=NanoPi NEO Plus2 (H5) @@ -328,7 +336,8 @@ UBOOT_TARGETS := \ pangolin \ pine64_plus \ sopine_baseboard \ - orangepi_zero_plus + orangepi_zero_plus \ + libretech_all_h3_cc_h5 UBOOT_CONFIGURE_VARS += USE_PRIVATE_LIBGCC=yes |