mirror of
https://github.com/armbian/build.git
synced 2025-08-12 14:16:57 +02:00
- shellfmt: bump to 3.6.0 (run with `bash lib/tools/shellfmt.sh`) - .editorconfig: rationalize, remove duplicated logic
18 lines
280 B
Bash
18 lines
280 B
Bash
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"
|
|
)
|
|
|
|
}
|