mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
27 lines
755 B
Plaintext
27 lines
755 B
Plaintext
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
|
|
#
|
|
# 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"
|
|
ASOUND_STATE="${ASOUND_STATE:-"asound.state.meson64"}"
|
|
|
|
CPUMIN=1000000
|
|
CPUMAX=1800000
|
|
GOVERNOR=ondemand
|
|
|
|
# @TODO: this is temporary measure before to figure out why it doesn't load from `config/boards/radxa-zero.conf`
|
|
if [[ $BOARD == radxa-zero ]]; then
|
|
OVERLAY_PREFIX="meson-g12a"
|
|
fi
|
|
|
|
uboot_custom_postprocess() {
|
|
if [[ $BOARD == radxa-zero ]]; then
|
|
uboot_g12_postprocess "$SRC"/cache/sources/amlogic-boot-fip/radxa-zero g12a
|
|
fi
|
|
}
|