mirror of
https://github.com/armbian/build.git
synced 2025-09-07 14:51:08 +02:00
- bsp-cli: now depends on `base-files (>= ${REVISION})`, this way upgrading the bsp-cli causes our base-files to be installed - bsp-cli no longer does gymnastics with /etc/os-release et al, all done in armbian-base-files now - general/apt-utils.sh: introduce `apt_find_upstream_package_version_and_download_url()` - base-files: add release to version, in order to comply with repo restrictions (valid repos can't have two different debs with same name and version, md5 must match)
35 lines
851 B
Bash
35 lines
851 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-config"]="armbian-config"
|
|
["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"
|
|
)
|
|
|
|
}
|