armbian-build/config/sources/families/mvebu.conf
Ricardo Pardini 40371934d2 lib & config: give shellcheck directions (to /dev/null for dynamic, to repo-relative path for static) for all sourced references
- in preparation for tightening the shellcheck severity level
  - it needs to be able to follow all sources; dynamic ones are ignored, static ones need root-relative prefix
2024-05-19 19:41:35 +02:00

64 lines
1.6 KiB
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/
#
enable_extension "marvell-tools"
ARCH=armhf
if [[ $BOARD == helios4 ]]; then
# shellcheck source=config/sources/families/include/mvebu-helios4.inc
source "${BASH_SOURCE%/*}/include/mvebu-helios4.inc"
BOOTENV_FILE='helios4.txt'
else
# shellcheck source=config/sources/families/include/mvebu-clearfog.inc
source "${BASH_SOURCE%/*}/include/mvebu-clearfog.inc"
BOOTENV_FILE='clearfog.txt'
fi
case $BRANCH in
legacy)
declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
;;
current)
declare -g KERNEL_MAJOR_MINOR="6.6" # Major and minor versions of this kernel.
;;
edge)
declare -g KERNEL_MAJOR_MINOR="6.7" # Major and minor versions of this kernel.
;;
esac
CPUMIN=800000
CPUMAX=1600000
GOVERNOR=ondemand
write_uboot_platform() {
dd if=$1/u-boot.mmc of=$2 bs=512 seek=1 status=noxfer > /dev/null 2>&1
}
write_uboot_platform_mtd() {
dd if=$1/u-boot.flash of=$2 status=noxfer > /dev/null 2>&1
}
family_tweaks() {
# execute specific tweaks function if present
[[ $(type -t family_tweaks_s) == function ]] && family_tweaks_s
# Tweak to force SYS time to be synced from RTC at startup
run_host_command_logged install -m 755 "${SRC}"/packages/bsp/mvebu/hwclock-set "${SDCARD}"/lib/udev/
if [[ $DISTRIBUTION == "Ubuntu" ]]; then
chroot_sdcard_apt_get_remove --auto-remove fake-hwclock linux-sound-base alsa-base alsa-utils bluez
else
chroot_sdcard_apt_get_remove --auto-remove fake-hwclock alsa-utils bluez
fi
}