summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2020-05-27 10:42:08 +0200
committerGitHub <noreply@github.com>2020-05-27 10:42:08 +0200
commitae495e3e8f32934679cc412d83aa6cdc57815a8a (patch)
tree0092efe03a82fd3dee72776a76ce63484d993430
parent00e92427506cab515d7d261a85311f66fbc8b431 (diff)
parent0b5250f509e2508a53495000fcc11e11e13ee3b5 (diff)
downloadmeta-updater-ae495e3e8f32934679cc412d83aa6cdc57815a8a.tar.gz
Merge pull request #727 from agners/allow-extra-ostree-commit-args
image_types_ostree: allow to add layer specific OSTree commit arguments
-rw-r--r--classes/image_types_ostree.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/image_types_ostree.bbclass b/classes/image_types_ostree.bbclass
index ab11da9..bab4ed7 100644
--- a/classes/image_types_ostree.bbclass
+++ b/classes/image_types_ostree.bbclass
@@ -174,7 +174,8 @@ IMAGE_CMD_ostreecommit () {
174 --branch=${OSTREE_BRANCHNAME} \ 174 --branch=${OSTREE_BRANCHNAME} \
175 --subject="${OSTREE_COMMIT_SUBJECT}" \ 175 --subject="${OSTREE_COMMIT_SUBJECT}" \
176 --body="${OSTREE_COMMIT_BODY}" \ 176 --body="${OSTREE_COMMIT_BODY}" \
177 --add-metadata-string=version="${OSTREE_COMMIT_VERSION}") 177 --add-metadata-string=version="${OSTREE_COMMIT_VERSION}" \
178 ${EXTRA_OSTREE_COMMIT})
178 179
179 echo $ostree_target_hash > ${WORKDIR}/ostree_manifest 180 echo $ostree_target_hash > ${WORKDIR}/ostree_manifest
180 181