armbian-next: rename too-long main function to prep_conf_main_build_single()

- this commit is proof of OCD (old name didn't fit stacktrace space)
This commit is contained in:
Ricardo Pardini
2023-01-18 22:39:35 +01:00
parent 242a5dad1f
commit da1cf2b475
5 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ function cli_standard_build_pre_run() {
function cli_standard_build_run() {
# configuration etc - it initializes the extension manager; handles its own logging sections
prepare_and_config_main_build_single
prep_conf_main_build_single
# main_default_build_single() handles its own logging sections...
main_default_build_single

View File

@@ -9,7 +9,7 @@ function cli_config_dump_run() {
}
function config_and_remove_useless() {
do_logging=no prepare_and_config_main_build_single # avoid logging during configdump; it's useless
do_logging=no prep_conf_main_build_single # avoid logging during configdump; it's useless
unset FINALDEST
unset HOOK_ORDER HOOK_POINT HOOK_POINT_TOTAL_FUNCS
unset REPO_CONFIG REPO_STORAGE

View File

@@ -18,7 +18,7 @@ function cli_patch_kernel_run() {
declare -g KERNEL_CONFIGURE=no # no menuconfig
declare -g RELEASE=jammy # or whatever, not relevant, just fool the configuration
declare -g SHOW_LOG=yes # show the log
prepare_and_config_main_build_single
prep_conf_main_build_single
declare ymd vendor_lc target_repo_url summary_url
ymd="$(date +%Y%m%d)"

View File

@@ -6,7 +6,7 @@
# * changes system settings
#
function prepare_host() {
# Now, if NOT interactive, do some basic checks. If interactive, those have already run back in prepare_and_config_main_build_single()
# Now, if NOT interactive, do some basic checks. If interactive, those have already run back in prep_conf_main_build_single()
if [[ ! -t 1 ]]; then
LOG_SECTION="ni_check_basic_host" do_with_logging check_basic_host
fi

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
function prepare_and_config_main_build_single() {
function prep_conf_main_build_single() {
LOG_SECTION="config_early_init" do_with_conditional_logging config_early_init
# if interactive, call prepare-host.sh::check_basic_host() early, to avoid disappointments later.
@@ -26,7 +26,7 @@ function prepare_and_config_main_build_single() {
LOG_SECTION="do_extra_configuration" do_with_conditional_logging do_extra_configuration
LOG_SECTION="config_post_main" do_with_conditional_logging config_post_main
display_alert "Done with prepare_and_config_main_build_single" "${BOARD}.${BOARD_TYPE}" "info"
display_alert "Done with prep_conf_main_build_single" "${BOARD}.${BOARD_TYPE}" "info"
}
function config_source_board_file() {