diff options
author | Anton Gerasimov <anton@advancedtelematic.com> | 2017-05-31 12:36:16 +0200 |
---|---|---|
committer | Anton Gerasimov <anton@advancedtelematic.com> | 2017-05-31 16:00:06 +0200 |
commit | 20aae31c49333946ff83b009153d70763c8def8e (patch) | |
tree | 58b34f19616a70a0631ee7bfe5e78f9af802502c /classes | |
parent | 3dbb25b99ebf51841ed29fa60981cecfdea72e6d (diff) | |
download | meta-updater-20aae31c49333946ff83b009153d70763c8def8e.tar.gz |
Add option to choose which sota client to use (if any)
Diffstat (limited to 'classes')
-rw-r--r-- | classes/sota.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sota.bbclass b/classes/sota.bbclass index d786b69..2761111 100644 --- a/classes/sota.bbclass +++ b/classes/sota.bbclass | |||
@@ -5,7 +5,7 @@ python __anonymous() { | |||
5 | 5 | ||
6 | OVERRIDES .= "${@bb.utils.contains('DISTRO_FEATURES', 'sota', ':sota', '', d)}" | 6 | OVERRIDES .= "${@bb.utils.contains('DISTRO_FEATURES', 'sota', ':sota', '', d)}" |
7 | 7 | ||
8 | IMAGE_INSTALL_append_sota = " ostree os-release" | 8 | IMAGE_INSTALL_append_sota = " ostree os-release ${SOTA_CLIENT}" |
9 | IMAGE_CLASSES += " image_types_ostree image_types_ota" | 9 | IMAGE_CLASSES += " image_types_ostree image_types_ota" |
10 | IMAGE_FSTYPES += "${@bb.utils.contains('DISTRO_FEATURES', 'sota', 'ostreepush otaimg wic', ' ', d)}" | 10 | IMAGE_FSTYPES += "${@bb.utils.contains('DISTRO_FEATURES', 'sota', 'ostreepush otaimg wic', ' ', d)}" |
11 | 11 | ||