diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2021-06-10 13:22:14 +0900 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2021-06-10 17:48:16 +0900 |
commit | 3513c827fa0f8c57e791d168211169c60aeffa45 (patch) | |
tree | 73af1115d51aaf24c3969c495eb512e7b6831c7d /scripts | |
parent | 0da18f3f898de21081ddb8b34390c8dfb49fcefc (diff) | |
download | meta-3513c827fa0f8c57e791d168211169c60aeffa45.tar.gz meta-3513c827fa0f8c57e791d168211169c60aeffa45.tar.bz2 meta-3513c827fa0f8c57e791d168211169c60aeffa45.zip |
[TRE-2729] Add VIM3 and C4 hal.img imagesubmit/tizen/20210611.012138accepted/tizen/unified/20210611.013634
Add iot-hal-backend-vim3.yaml and iot-hal-backend-c4.yaml files
for VIM3/C4 hal.img.
- iot-hal-backend-vim3.yaml for VIM3 hal.img
and then the created hal.img will be added to tizen-boot-arm64-vim3.
- iot-hal-backend-c4.yaml for C4 hal.img
and then the created hal.img will be added to tizen-boot-arm64-c4.
Change-Id: Ibd690945723c2584093d38e60227a4a3a72d6a1c
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/iot-hal-backend.post | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/iot-hal-backend.post b/scripts/iot-hal-backend.post index a111a50..60f1ada 100644 --- a/scripts/iot-hal-backend.post +++ b/scripts/iot-hal-backend.post @@ -86,7 +86,7 @@ create_backend_dependency_file() { } #Supported Target's list -TARGET=("RPI3" "ARTIK530"); +TARGET=("RPI3" "ARTIK530" "VIM3" "C4"); PKGGROUP=`/usr/bin/rpm -qa | /bin/grep package-groups` if [ $PKGGROUP ]; then @@ -105,6 +105,12 @@ if [ $PKGGROUP ]; then ARTIK530) BACKEND=`/usr/bin/xmlstarlet sel -t -v '//group[name = "IoT Hal Backend ARTIK530"]/packagelist/packagereq' -n /usr/share/package-groups/group.xml` ;; + VIM3) + BACKEND=`/usr/bin/xmlstarlet sel -t -v '//group[name = "IoT Hal Backend VIM3"]/packagelist/packagereq' -n /usr/share/package-groups/group.xml` + ;; + C4) + BACKEND=`/usr/bin/xmlstarlet sel -t -v '//group[name = "IoT Hal Backend C4"]/packagelist/packagereq' -n /usr/share/package-groups/group.xml` + ;; esac /usr/bin/mkdir -p /hal/list/ |