diff options
author | Laurent Bonnans <laurent.bonnans@here.com> | 2018-09-14 17:46:42 +0200 |
---|---|---|
committer | Laurent Bonnans <laurent.bonnans@here.com> | 2018-09-18 10:15:13 +0200 |
commit | d0024de06b23d2f295d41fb4f73933d5aad9b077 (patch) | |
tree | 3ce9483a4ea3b090df14c7f45330c91390e56ef3 /classes | |
parent | d19a74303fb573526bc604c7da94daed11883494 (diff) | |
download | meta-updater-d0024de06b23d2f295d41fb4f73933d5aad9b077.tar.gz |
Update `installed_versions` passing to new location
Diffstat (limited to 'classes')
-rw-r--r-- | classes/image_types_ota.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/image_types_ota.bbclass b/classes/image_types_ota.bbclass index cd58080..4380494 100644 --- a/classes/image_types_ota.bbclass +++ b/classes/image_types_ota.bbclass | |||
@@ -103,7 +103,7 @@ fakeroot do_otasetup () { | |||
103 | 103 | ||
104 | cp -a ${IMAGE_ROOTFS}/var/sota ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/ || true | 104 | cp -a ${IMAGE_ROOTFS}/var/sota ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/ || true |
105 | # Create /var/sota if it doesn't exist yet | 105 | # Create /var/sota if it doesn't exist yet |
106 | mkdir -p ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota || true | 106 | mkdir -p ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota |
107 | # Ensure the permissions are correctly set | 107 | # Ensure the permissions are correctly set |
108 | chmod 700 ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota | 108 | chmod 700 ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota |
109 | 109 | ||
@@ -116,7 +116,8 @@ fakeroot do_otasetup () { | |||
116 | if [ -n "${GARAGE_TARGET_VERSION}" ]; then | 116 | if [ -n "${GARAGE_TARGET_VERSION}" ]; then |
117 | target_version=${GARAGE_TARGET_VERSION} | 117 | target_version=${GARAGE_TARGET_VERSION} |
118 | fi | 118 | fi |
119 | echo "{\"${ostree_target_hash}\":\"${GARAGE_TARGET_NAME}-${target_version}\"}" > ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota/installed_versions | 119 | mkdir -p ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota/import |
120 | echo "{\"${ostree_target_hash}\":\"${GARAGE_TARGET_NAME}-${target_version}\"}" > ${OTA_SYSROOT}/ostree/deploy/${OSTREE_OSNAME}/var/sota/import/installed_versions | ||
120 | echo "All done. Cleaning up dir: ${HOME_TMP}" | 121 | echo "All done. Cleaning up dir: ${HOME_TMP}" |
121 | rm -rf ${HOME_TMP} | 122 | rm -rf ${HOME_TMP} |
122 | } | 123 | } |