tools: another fix to incorrect reference to image-id 18/3918/1
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 30 May 2013 10:17:09 +0000 (13:17 +0300)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 30 May 2013 10:18:25 +0000 (13:18 +0300)
Change-Id: Icffe1577082c877e3df8a43bcdde26f38ec4086d
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
tools/updateinfo/create-update.py

index 0819d06..6907215 100755 (executable)
@@ -91,9 +91,9 @@ else:
 tmp_dir = tempfile.mkdtemp(dir=".")
 
 # Get packages files
-download(config.get(opts.product, 'packages-file', False, {'image-id': opts.old}),
+download(config.get(opts.product, 'packages-file', False, {'build-id': opts.old}),
          credentials, tmp_dir, packages_files_dir, "packages")
-download(config.get(opts.product, 'packages-file', False, {'image-id': opts.new}),
+download(config.get(opts.product, 'packages-file', False, {'build-id': opts.new}),
          credentials, patch_dir, packages_files_dir, "packages")
 
 with open(os.path.join(tmp_dir, "repourl"), "w") as repourlfile: