mirror of
https://github.com/armbian/build.git
synced 2026-01-06 09:58:46 -08:00
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)
28 lines
920 B
Bash
28 lines
920 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 cli_standard_build_pre_run() {
|
|
declare -g ARMBIAN_COMMAND_REQUIRE_BASIC_DEPS="yes" # Require prepare_host_basic to run before the command.
|
|
|
|
# "gimme root on a Linux machine"
|
|
cli_standard_relaunch_docker_or_sudo
|
|
}
|
|
|
|
function cli_standard_build_run() {
|
|
declare -g -r BUILDING_IMAGE=yes # Marker; meaning "we are building an image, not just an artifact"
|
|
declare -g -r NEEDS_BINFMT="yes" # Marker; make sure binfmts are installed during prepare_host_interactive
|
|
|
|
# configuration etc - it initializes the extension manager; handles its own logging sections
|
|
prep_conf_main_build_single
|
|
|
|
# the full build. It has its own logging sections.
|
|
do_with_default_build full_build_packages_rootfs_and_image
|
|
|
|
}
|