- make `tmpfs_estimated_size` and `available_physical_memory_mib` readonly and global and only ever set once - remove subshell from `get_rootfs_cache_list()`, new version `get_rootfs_cache_list_into_array_variable()` for sanity - warns if `ROOT_FS_CREATE_ONLY=yes` is set during cached build path - add a `wait_for_disk_sync()` after restoring rootfs cache - fix logging sections for `build_rootfs_only()` and `prepare_rootfs_build_params_and_trap()` in `build_rootfs_and_image()` - remove the logging section from `get_or_create_rootfs_cache_chroot_sdcard()` call in `build_rootfs_only()` (which is now itself logged) - @TODO: `deploy_qemu_binary_to_chroot()` is leaking a qemu bin in rootfs cache!
25 lines
997 B
Bash
25 lines
997 B
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() {
|
|
# configuration etc - it initializes the extension manager; handles its own logging sections
|
|
prep_conf_main_build_single
|
|
|
|
# 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
|
|
}
|
|
|
|
# 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
|
|
|
|
# "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
|
|
}
|