summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2018-10-15 13:55:47 +0200
committerStefan Agner <stefan.agner@toradex.com>2018-10-18 15:41:28 +0200
commitf07be1805cc22b5428ff529b705731360b485d06 (patch)
tree18ec5c89956106592fbde095fb6ce95e062f946f /lib
parentc858bd0cfd7c7cb5d656ee4a4465dddfcde4dc4d (diff)
downloadmeta-updater-f07be1805cc22b5428ff529b705731360b485d06.tar.gz
image_types_ota: use IMGDEPLOYDIR for ota-ext4 images
Do not write directly to the IMAGE_DEPLOY_DIR but to the new deploy directory IMGDEPLOYDIR. Also change the image ending to match the image type name (from otaimg to ota-ext4). This allows to use the automatic symlinking and output artefact management too. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/oeqa/selftest/cases/updater.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py
index b555d92..c7b18dd 100644
--- a/lib/oeqa/selftest/cases/updater.py
+++ b/lib/oeqa/selftest/cases/updater.py
@@ -66,7 +66,7 @@ class GeneralTests(OESelftestTestCase):
66 def test_add_package(self): 66 def test_add_package(self):
67 deploydir = get_bb_var('DEPLOY_DIR_IMAGE') 67 deploydir = get_bb_var('DEPLOY_DIR_IMAGE')
68 imagename = get_bb_var('IMAGE_LINK_NAME', 'core-image-minimal') 68 imagename = get_bb_var('IMAGE_LINK_NAME', 'core-image-minimal')
69 image_path = deploydir + '/' + imagename + '.otaimg' 69 image_path = deploydir + '/' + imagename + '.ota-ext4'
70 logger = logging.getLogger("selftest") 70 logger = logging.getLogger("selftest")
71 71
72 logger.info('Running bitbake with man in the image package list') 72 logger.info('Running bitbake with man in the image package list')