diff options
author | Jon Oster <tkfu@users.noreply.github.com> | 2017-06-01 14:32:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 14:32:26 +0200 |
commit | f804d831585354ba8f59ff7c4ca65f59587fdfb5 (patch) | |
tree | 58b34f19616a70a0631ee7bfe5e78f9af802502c /classes | |
parent | 3dbb25b99ebf51841ed29fa60981cecfdea72e6d (diff) | |
parent | 20aae31c49333946ff83b009153d70763c8def8e (diff) | |
download | meta-updater-f804d831585354ba8f59ff7c4ca65f59587fdfb5.tar.gz |
Merge pull request #73 from advancedtelematic/bugfix/PRO-3195/sotaclient
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 | ||