mirror of
https://github.com/armbian/build.git
synced 2025-09-07 14:51:08 +02:00
* Refactor armbian-config into install as external package - https://github.armbian.com/configng repository is always present - package can still be removed from the install list Since this tool will have deeper integration with Armbian, we should probably drop possibility to remove the tool from the list. * Enable armbian-config as extension
34 lines
813 B
Bash
34 lines
813 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"
|
|
["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"
|
|
)
|
|
|
|
}
|