Add support for most recent memory chips on BPi M5 / M2PRO

Signed-off-by: Igor <igor@armbian.com>
This commit is contained in:
Igor 2023-08-18 15:50:51 +02:00
parent f3736c990a
commit 5a2e6a2f63
3 changed files with 20 additions and 2 deletions

View File

@ -10,3 +10,11 @@ SERIALCON="ttyAML0"
BOOT_LOGO="desktop"
BOOTBRANCH_BOARD="tag:v2023.07.02"
BOOTPATCHDIR="v2023.07.02"
function fetch_sources_tools__libreelec_amlogic_fip_pre_m2-pro_blob_update() {
fetch_from_repo "https://github.com/Dangku/amlogic-boot-fip" "amlogic-boot-fip" "branch:master"
}
function post_uboot_custom_postprocess__bpi-m2-pro() {
uboot_g12_postprocess "$SRC"/cache/sources/amlogic-boot-fip/bananapi-m2-pro g12a
}

View File

@ -11,6 +11,14 @@ BOOT_LOGO="desktop"
BOOTBRANCH_BOARD="tag:v2023.07.02"
BOOTPATCHDIR="v2023.07.02"
function fetch_sources_tools__libreelec_amlogic_fip_pre_m5_blob_update() {
fetch_from_repo "https://github.com/Dangku/amlogic-boot-fip" "amlogic-boot-fip" "branch:master"
}
function post_uboot_custom_postprocess__bpi-m5() {
uboot_g12_postprocess "$SRC"/cache/sources/amlogic-boot-fip/bananapi-m5 g12a
}
function post_family_tweaks_bsp__bananapi_rtl_bt() {
if [[ -d "$SRC/packages/bsp/bananapi/rtl_bt" ]]; then
mkdir -p "${destination}"/lib/firmware/updates/rtl_bt

View File

@ -26,9 +26,11 @@ uboot_custom_postprocess() {
# do nothing. VIM3L has its own post_uboot_custom_postprocess hook, directly in the board file.
:
elif [[ $BOARD == bananapim5 ]]; then
uboot_g12_postprocess $SRC/cache/sources/amlogic-boot-fip/bananapi-m5 g12a
# do nothing. Banana M5 has its own post_uboot_custom_postprocess hook, directly in the board file.
:
elif [[ $BOARD == bananapim2pro ]]; then
uboot_g12_postprocess $SRC/cache/sources/amlogic-boot-fip/bananapi-m5 g12a # Attention: bananapim2pro uses the same blobs as bananapim5
# do nothing. Banana M2Pro has its own post_uboot_custom_postprocess hook, directly in the board file.
:
else
display_alert "uboot_custom_postprocess meson-sm1" "Unknown BOARD: $BOARD - not using FIP trees" "wrn"
fi