From 4391dafce42ff7ecec2068872d4f08c3157272a1 Mon Sep 17 00:00:00 2001 From: Andrei Gherzan <andrei.gherzan@huawei.com> Date: Tue, 27 Apr 2021 12:41:12 +0100 Subject: [PATCH] homeassistant-config-blueprint-dashboard: Introduce recipe Add recipe for creating HomeAssistant's configuration for dashboard blueprint. - Install default configuration files. Currently it's only configuration.yaml - Apply changes in run-time based on build variables Signed-off-by: Zbigniew Bodek <zbigniew.bodek@huawei.com> Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> --- ...omeassistant-config-blueprint-dashboard.bb | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 meta-ohos-blueprints/recipes-homeassistant/homeassistant/homeassistant-config-blueprint-dashboard.bb diff --git a/meta-ohos-blueprints/recipes-homeassistant/homeassistant/homeassistant-config-blueprint-dashboard.bb b/meta-ohos-blueprints/recipes-homeassistant/homeassistant/homeassistant-config-blueprint-dashboard.bb new file mode 100644 index 00000000..29e474de --- /dev/null +++ b/meta-ohos-blueprints/recipes-homeassistant/homeassistant/homeassistant-config-blueprint-dashboard.bb @@ -0,0 +1,42 @@ +# SPDX-FileCopyrightText: Huawei Inc. +# +# SPDX-License-Identifier: Apache-2.0 + +SUMMARY = "Home Assistant configuration for All Scenarios OS Smart Panel \ +blueprint" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${OHOS_COREBASE}/LICENSES/Apache-2.0.txt;md5=ef3dabb8f39493f4ea410bebc1d01755" +INHIBIT_DEFAULT_DEPS = "1" + +inherit allarch + +do_fetch[noexec] = "1" +do_unpack[noexec] = "1" +do_patch[noexec] = "1" +do_configure[noexec] = "1" +do_compile[noexec] = "1" + +require recipes-homeassistant/homeassistant/homeassistant-config.inc +require recipes-homeassistant/homeassistant/homeassistant-useradd.inc + +do_install() { + install -d "${D}${HOMEASSISTANT_CONFIG_DIR}" + + # MAC addresses can be adjusted in your local.conf. + cat >> "${D}${HOMEASSISTANT_CONFIG_DIR}/configuration.yaml" << EOF +default_config: + +sensor: + - platform: allscenarios_sensors + mac: "${SMART_HOME_SENSORS_MAC}" + +switch: + - platform: allscenarios_switch + mac: "${SMART_HOME_SWITCH_MAC}" +EOF + + chown -R "${HOMEASSISTANT_USER}":homeassistant "${D}${HOMEASSISTANT_CONFIG_DIR}" +} + +RDEPENDS_${PN} = "smart-home-homeassistant-plugin" +FILES_${PN} += "${HOMEASSISTANT_CONFIG_DIR}/configuration.yaml" -- GitLab