mirror of
https://github.com/armbian/build.git
synced 2025-08-17 16:46:58 +02:00
* Add / modify (c) in bash scripts Signed-off-by: Igor <igor@armbian.com> * Add (c) to the source config files --------- Signed-off-by: Igor <igor@armbian.com>
27 lines
489 B
Bash
27 lines
489 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# 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/
|
|
|
|
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"
|
|
|
|
# tar.zst
|
|
["rootfs"]="rootfs"
|
|
)
|
|
|
|
}
|