mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
24 lines
632 B
Plaintext
24 lines
632 B
Plaintext
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2024 Armbian
|
|
#
|
|
# This file is a part of the Armbian Build Framework
|
|
# https://github.com/armbian/build/
|
|
#
|
|
|
|
# shellcheck source=config/sources/families/include/meson64_common.inc
|
|
source "${BASH_SOURCE%/*}/include/meson64_common.inc"
|
|
if [[ "$BOARD" == "gateway-gz80x" ]]; then
|
|
UBOOT_TARGET_MAP="u-boot-dtb.img;;u-boot.bin u-boot-dtb.img"
|
|
fi
|
|
|
|
uboot_custom_postprocess() {
|
|
if [[ "$BOARD" == "gateway-gz80x" ]]; then
|
|
uboot_axg_postprocess_ng "$SRC/cache/sources/amlogic-boot-fip/jethub-j100"
|
|
else
|
|
echo "Don't know how to handle FIP trees for board '${BOARD}'"
|
|
exit 1
|
|
fi
|
|
}
|