diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2019-02-12 09:10:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 09:10:14 +0100 |
commit | 29c3476c8286649210ab8d731bfa063c76907f3b (patch) | |
tree | eca591462a381165f1db9911ff78529fd365d17b /classes | |
parent | 8c10b573a9dc000899fd71d3bd0d82131200ac23 (diff) | |
parent | 168efb38411ed4feae6d99e4ae00c867ceff3fba (diff) | |
download | meta-updater-29c3476c8286649210ab8d731bfa063c76907f3b.tar.gz |
Merge pull request #469 from liuming50/fix-wrong-operator
sota.bbclass: fix a variable assignment regression
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 ccc4526..92b4c43 100644 --- a/classes/sota.bbclass +++ b/classes/sota.bbclass | |||
@@ -21,7 +21,7 @@ WKS_FILE_sota ?= "sdimage-sota.wks" | |||
21 | 21 | ||
22 | EXTRA_IMAGEDEPENDS_append_sota = " parted-native mtools-native dosfstools-native" | 22 | EXTRA_IMAGEDEPENDS_append_sota = " parted-native mtools-native dosfstools-native" |
23 | 23 | ||
24 | INITRAMFS_FSTYPES ??= "${@oe.utils.ifelse(d.getVar('OSTREE_BOOTLOADER') == 'u-boot', 'cpio.gz.u-boot', 'cpio.gz')}" | 24 | INITRAMFS_FSTYPES ?= "${@oe.utils.ifelse(d.getVar('OSTREE_BOOTLOADER') == 'u-boot', 'cpio.gz.u-boot', 'cpio.gz')}" |
25 | 25 | ||
26 | # Please redefine OSTREE_REPO in order to have a persistent OSTree repo | 26 | # Please redefine OSTREE_REPO in order to have a persistent OSTree repo |
27 | export OSTREE_REPO ?= "${DEPLOY_DIR_IMAGE}/ostree_repo" | 27 | export OSTREE_REPO ?= "${DEPLOY_DIR_IMAGE}/ostree_repo" |