mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-05-08 09:39:03 +01:00
14 lines
236 B
Bash
Executable File
14 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_DIR=${BR2_EXTERNAL_HASSIO_PATH}/scripts
|
|
BOARD_DIR="$(dirname $0)"
|
|
|
|
. ${SCRIPT_DIR}/rootfs_layer.sh
|
|
|
|
# HassioOS tasks
|
|
fix_rootfs
|
|
install_hassio_cli
|
|
|
|
cp ${BOARD_DIR}/rauc.conf ${TARGET_DIR}/etc/rauc/system.conf
|