mirror of
https://github.com/armbian/build.git
synced 2025-08-12 06:06:58 +02:00
70 lines
3.0 KiB
Bash
70 lines
3.0 KiB
Bash
function cli_rootfs_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_rootfs_run() {
|
|
declare -a vars_cant_be_set=("LINUXFAMILY" "BOARDFAMILY")
|
|
# loop through all vars and check if they are set and bomb out
|
|
for var in "${vars_cant_be_set[@]}"; do
|
|
if [[ -n ${!var} ]]; then
|
|
exit_with_error "Param '${var}' is set ('${!var}') but can't be set for rootfs CLI; rootfs's are shared across boards and families."
|
|
fi
|
|
done
|
|
|
|
# If BOARD is set, use it to convert to an ARCH.
|
|
if [[ -n ${BOARD} ]]; then
|
|
display_alert "BOARD is set, converting to ARCH for rootfs building" "${BOARD}" "warn"
|
|
# Convert BOARD to ARCH; source the BOARD and FAMILY stuff
|
|
|
|
|
|
LOG_SECTION="config_source_board_file" do_with_conditional_logging config_source_board_file
|
|
|
|
LOG_SECTION="config_source_board_file" do_with_conditional_logging source_family_config_and_arch
|
|
|
|
display_alert "Done sourcing board file" "${BOARD} - arch: ${ARCH}" "warn"
|
|
|
|
fi
|
|
|
|
declare -a vars_need_to_be_set=("RELEASE" "ARCH") # Maybe the rootfs version?
|
|
# loop through all vars and check if they are not set and bomb out if so
|
|
for var in "${vars_need_to_be_set[@]}"; do
|
|
if [[ -z ${!var} ]]; then
|
|
exit_with_error "Param '${var}' is not set but needs to be set for rootfs CLI."
|
|
fi
|
|
done
|
|
|
|
declare -r __wanted_rootfs_arch="${ARCH}"
|
|
declare -g -r RELEASE="${RELEASE}" # make readonly for finding who tries to change it
|
|
|
|
# configuration etc - it initializes the extension manager; handles its own logging sections.
|
|
prep_conf_main_only_rootfs < /dev/null # no stdin for this, so it bombs if tries to be interactive.
|
|
|
|
declare -g -r ARCH="${ARCH}" # make readonly for finding who tries to change it
|
|
if [[ "${ARCH}" != "${__wanted_rootfs_arch}" ]]; then
|
|
exit_with_error "Param 'ARCH' is set to '${ARCH}' after config, but different from wanted '${__wanted_rootfs_arch}'"
|
|
fi
|
|
|
|
# default build, but only invoke specific rootfs functions needed. It has its own logging sections.
|
|
do_with_default_build cli_rootfs_only_in_default_build < /dev/null # no stdin for this, so it bombs if tries to be interactive.
|
|
|
|
reset_uid_owner "${BUILT_ROOTFS_CACHE_FILE}"
|
|
|
|
display_alert "Rootfs build complete" "${BUILT_ROOTFS_CACHE_NAME}" "info"
|
|
display_alert "Rootfs build complete, file: " "${BUILT_ROOTFS_CACHE_FILE}" "info"
|
|
}
|
|
|
|
# This is run inside do_with_default_build(), above.
|
|
function cli_rootfs_only_in_default_build() {
|
|
LOG_SECTION="prepare_rootfs_build_params_and_trap" do_with_logging prepare_rootfs_build_params_and_trap
|
|
|
|
LOG_SECTION="calculate_rootfs_cache_id" do_with_logging calculate_rootfs_cache_id
|
|
|
|
display_alert "Going to build rootfs" "packages_hash: '${packages_hash:-}' cache_type: '${cache_type:-}'" "info"
|
|
|
|
# "rootfs" CLI skips over a lot goes straight to create the rootfs. It doesn't check cache etc.
|
|
LOG_SECTION="create_new_rootfs_cache" do_with_logging create_new_rootfs_cache
|
|
}
|