diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-06-16 00:59:47 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-07-06 14:32:43 -0400 |
commit | 0502646dd3538d4f3c9d85f07a8d211c3b48f7fc (patch) | |
tree | 053d2f3a69fb80aa8d1f5d686f9dea6431bd7988 /recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh | |
parent | 70dc83d80169ff6398279aed074f94fc060ff361 (diff) |
demo-i2c-udev-conf: update for reworked agl-service-hvac
Update demo-i2c-udev-conf recipe and the script and systemd unit
it installs to generate the configuration that the reworked
agl-service-hvac daemon expects for LED configuration for the
demo platform.
Bug-AGL: SPEC-4409
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I8a746681a5f0acab9aa834796abd3607570e54b4
Diffstat (limited to 'recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh')
-rwxr-xr-x | recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh b/recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh new file mode 100755 index 000000000..c1e08f1c2 --- /dev/null +++ b/recipes-core/udev/demo-i2c-udev-conf/hvac-conf-in-rewrite.sh @@ -0,0 +1,24 @@ +#!/bin/bash +# SPDX-License-Identifier: Apache-2.0 +# (C) 2018 Jan-Simon Möller, dl9pf@gmx.de, jsmoeller@linuxfoundation.org +# (C) 2022 Scott Murray <scott.murray@konsulko.com> + +#set -x +set -e + +TARGET="/etc/xdg/AGL/agl-service-hvac-leds.conf" + +if [ $1 ] ; then + # The device is always 0009 -> 9 . Only change is the i2c IF . + LED=`echo $1 | sed -e "s#0009#9#g"` + if [ $? -eq 0 ] ; then + echo "$LED" + sed -e "s#@DEVICE@#$LED#" ${TARGET}.in > ${TARGET} + else + echo "Invalid argument" + exit 1 + fi +else + echo "Need argument" + exit 1 +fi |