forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for allwinner T527 Avaota-A1 (armbian#6495)
- Loading branch information
Showing
7 changed files
with
6,913 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Allwinner Cortex-A55 octa core 2/4GB RAM SoC USB3 USB-C 2x GbE LCD | ||
BOARD_NAME="Avaota A1" | ||
BOARDFAMILY="sun55iw3-syterkit" | ||
BOARD_MAINTAINER="" | ||
KERNEL_TARGET="legacy" | ||
BOOT_FDT_FILE="allwinner/sun55i-t527-avaota-a1.dtb" | ||
SRC_EXTLINUX="yes" | ||
SRC_CMDLINE="earlycon=uart8250,mmio32,0x02500000 clk_ignore_unused initcall_debug=0 console=ttyAS0,115200 loglevel=8 cma=64M init=/sbin/init" | ||
BOOTFS_TYPE="fat" | ||
BOOTSIZE="256" | ||
SERIALCON="ttyAS0" | ||
declare -g SYTERKIT_BOARD_ID="avaota-a1" # This _only_ used for syterkit-allwinner extension | ||
|
||
function post_family_tweaks__avaota-a1() { | ||
display_alert "Applying boot blobs" | ||
cp -v "$SRC/packages/blobs/sunxi/sun50iw3/bl31.bin" "$SDCARD/boot/bl31.bin" | ||
cp -v "$SRC/packages/blobs/sunxi/sun50iw3/scp.bin" "$SDCARD/boot/scp.bin" | ||
cp -v "$SRC/packages/blobs/sunxi/sun50iw3/splash.bin" "$SDCARD/boot/splash.bin" | ||
|
||
display_alert "Applying wifi firmware" | ||
pushd "$SDCARD/lib/firmware" | ||
ln -s "aic8800/SDIO/aic8800D80" "aic8800d80" # use armbian-firmware | ||
popd | ||
} |
Oops, something went wrong.