diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2023-10-27 18:23:57 +0200 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2024-05-04 00:41:02 +0200 |
commit | 3f7d8e20cd1b56bf6c8e20cb984724ae1fa7525c (patch) | |
tree | b9a94a648b543a59d4c0bee39e7a3afe910e67b9 /package/boot/uboot-sunxi | |
parent | 263fde5ab87bc3f299e4bd2d33a22e0fe55f9545 (diff) |
sunxi: add support for Lichee Pi Zero Dock (V3s) board
CPU: Allwinner V3s single-core Cortex-A7 @ 1.2GHz
Memory: 64Mb DDR2 integrated into SoC package
Storage: 1x SDcard on board, 1x SDcard on dock
Network: 10/100M ethernet
Other: 4x buttons via LRADC, CSI
Flashing instructions:
Standard sunxi SD card installation procedure - copy image to SD card,
insert into SD card slot on the device and boot.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
Diffstat (limited to 'package/boot/uboot-sunxi')
-rw-r--r-- | package/boot/uboot-sunxi/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/boot/uboot-sunxi/Makefile b/package/boot/uboot-sunxi/Makefile index 112ea47d21..c6f98a0db4 100644 --- a/package/boot/uboot-sunxi/Makefile +++ b/package/boot/uboot-sunxi/Makefile @@ -140,6 +140,12 @@ define U-Boot/Linksprite_pcDuino BUILD_DEVICES:=linksprite_a10-pcduino endef +define U-Boot/LicheePi_Zero + BUILD_SUBTARGET:=cortexa7 + NAME:=Lichee Pi Zero V3s + BUILD_DEVICES:=licheepi_licheepi-zero-dock +endef + define U-Boot/Linksprite_pcDuino3 BUILD_SUBTARGET:=cortexa7 NAME:=Linksprite pcDuino3 @@ -389,6 +395,7 @@ UBOOT_TARGETS := \ Marsboard_A10 \ Mele_M9 \ OLIMEX_A13_SOM \ + LicheePi_Zero \ Linksprite_pcDuino \ Linksprite_pcDuino3 \ Linksprite_pcDuino3_Nano \ |