diff options
author | 2022-06-16 00:59:47 -0400 | |
---|---|---|
committer | 2022-06-17 16:44:34 -0400 | |
commit | 5fdeddef62f6873e0cc726c73760fe9fb8d57b36 (patch) | |
tree | a55646d2de921a2a257e755bb642e19541597ee7 /recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh | |
parent | de875a8bcbad58763d17c1b462970dca10280b95 (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: Id9ae8413971b5b2189c9fb14ed7cd7cb72f67ab9
Diffstat (limited to 'recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh')
-rwxr-xr-x | recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh b/recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh deleted file mode 100755 index 555766015..000000000 --- a/recipes-core/udev/demo-i2c-udev-conf/hvac-json-in-rewrite.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# (C) 2018 Jan-Simon Möller, dl9pf@gmx.de, jsmoeller@linuxfoundation.org -# License: Apache License 2.0 - -#set -x -set -e - -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#" /etc/hvac.json.in > /etc/hvac.json - else - echo "Invalid argument" - exit 1 - fi -else - echo "Need argument" - exit 1 -fi
\ No newline at end of file |