* Fix issue with latest shellcheck version The latest shellcheck versions use a new error number for non-POSIX string replacement. Change to ignore this new error number. * Ignore shellcheck issue about not following sourced files Newer shellcheck versions also warn when shellcheck does not follow sourcing of files with known path: Not following: ./meta was not specified as input (see shellcheck -x). We check those files separately so ignore this error for the two scripts affected.
32 lines
563 B
Bash
Executable File
32 lines
563 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1090,SC1091
|
|
set -e
|
|
|
|
SCRIPT_DIR=${BR2_EXTERNAL_HASSOS_PATH}/scripts
|
|
BOARD_DIR=${2}
|
|
HOOK_FILE=${3}
|
|
|
|
. "${BR2_EXTERNAL_HASSOS_PATH}/meta"
|
|
. "${BOARD_DIR}/meta"
|
|
|
|
. "${SCRIPT_DIR}/hdd-image.sh"
|
|
. "${SCRIPT_DIR}/rootfs-layer.sh"
|
|
. "${SCRIPT_DIR}/name.sh"
|
|
. "${SCRIPT_DIR}/rauc.sh"
|
|
. "${SCRIPT_DIR}/ota.sh"
|
|
. "${HOOK_FILE}"
|
|
|
|
# Cleanup
|
|
rm -rf "$(path_boot_dir)"
|
|
mkdir -p "$(path_boot_dir)"
|
|
|
|
# Hook pre image build stuff
|
|
hassos_pre_image
|
|
|
|
# Disk & OTA
|
|
create_disk_image
|
|
create_ota_update
|
|
|
|
# Hook post image build stuff
|
|
hassos_post_image
|