mirror of
https://github.com/armbian/build.git
synced 2026-01-06 09:58:46 -08:00
Update all copyright notices in shell scripts from 2025 to 2026. ## Changes - **Igor Pecovnik**: 2013-2025 → 2013-2026 (129 files) - **Ricardo Pardini**: 2023-2025 → 2023-2026, 2020-2025 → 2020-2026 (5 files) ## Additional Improvements Also updated the backtitle in `lib/functions/configuration/interactive.sh`: - Changed title from "Armbian building script" to "Armbian Linux build framework" - Removed docs link for cleaner display - Uses dynamic year calculation with separate declaration (fixes shellcheck SC2155)
37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2013-2026 Igor Pecovnik, igor@armbian.com
|
|
#
|
|
# This file is a part of the Armbian Build Framework
|
|
# https://github.com/armbian/build/
|
|
|
|
function kernel_prepare_git() {
|
|
[[ "${KERNELSOURCE}" == 'none' ]] && return 0 # do nothing if no kernel source... but again, why were we called then?
|
|
|
|
# validate kernel_git_bare_tree is set
|
|
if [[ -z "${kernel_git_bare_tree}" ]]; then
|
|
exit_with_error "kernel_git_bare_tree is not set"
|
|
fi
|
|
|
|
display_alert "Downloading sources" "kernel" "git"
|
|
|
|
GIT_FIXED_WORKDIR="${LINUXSOURCEDIR}" \
|
|
GIT_BARE_REPO_FOR_WORKTREE="${kernel_git_bare_tree}" \
|
|
GIT_BARE_REPO_INITIAL_BRANCH="master" \
|
|
fetch_from_repo "${KERNELSOURCE}" "kernel:${KERNEL_MAJOR_MINOR}" "${KERNELBRANCH}" "yes"
|
|
# second parameter, "dir", is ignored, since we've passed GIT_FIXED_WORKDIR
|
|
}
|
|
|
|
function kernel_cleanup_bundle_artifacts() {
|
|
[[ -z "${git_bundles_dir}" ]] && exit_with_error "git_bundles_dir is not set"
|
|
|
|
if [[ -d "${git_bundles_dir}" ]]; then
|
|
display_alert "Cleaning up Kernel git bundle artifacts" "no longer needed" "info"
|
|
run_host_command_logged rm -rf "${git_bundles_dir}"
|
|
fi
|
|
|
|
return 0
|
|
}
|