mirror of
https://github.com/armbian/build.git
synced 2025-08-14 07:06:58 +02:00
Establish some consistency with extension logging. Some extensions use another format: display_alert "message" "${EXTENSION}" "info" These were *not* adapted to this new schema.
9 lines
465 B
Bash
9 lines
465 B
Bash
# `f2fs` support is no longer included by default in prepare-host.sh.
|
|
# Enable this extension to include the required dependencies for building.
|
|
# This is automatically enabled if ROOTFS_TYPE is set to f2fs in main-config.sh.
|
|
|
|
function add_host_dependencies__add_f2fs_tooling() {
|
|
display_alert "Extension: ${EXTENSION}: Adding packages to host dependencies" "f2fs-tools" "debug"
|
|
EXTRA_BUILD_DEPS="${EXTRA_BUILD_DEPS} f2fs-tools" # @TODO: convert to array later
|
|
}
|