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)
34 lines
813 B
Bash
34 lines
813 B
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 armbian_register_artifacts() {
|
|
|
|
declare -g -A ARMBIAN_ARTIFACTS_TO_HANDLERS_DICT=(
|
|
# deb-tar
|
|
["kernel"]="kernel"
|
|
|
|
# deb
|
|
["u-boot"]="uboot"
|
|
["uboot"]="uboot"
|
|
["firmware"]="firmware"
|
|
["full_firmware"]="full_firmware"
|
|
["fake_ubuntu_advantage_tools"]="fake_ubuntu_advantage_tools"
|
|
["armbian-zsh"]="armbian-zsh"
|
|
["armbian-plymouth-theme"]="armbian-plymouth-theme"
|
|
["armbian-base-files"]="armbian-base-files"
|
|
["armbian-bsp-cli"]="armbian-bsp-cli"
|
|
["armbian-bsp-desktop"]="armbian-bsp-desktop"
|
|
["armbian-desktop"]="armbian-desktop"
|
|
|
|
# tar.zst
|
|
["rootfs"]="rootfs"
|
|
)
|
|
|
|
}
|