aboutsummaryrefslogtreecommitdiffstats
path: root/lib/swupd/bundles.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/swupd/bundles.py')
-rw-r--r--lib/swupd/bundles.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/swupd/bundles.py b/lib/swupd/bundles.py
index 8a47a09..75321f1 100644
--- a/lib/swupd/bundles.py
+++ b/lib/swupd/bundles.py
@@ -152,19 +152,6 @@ def copy_bundle_contents(d):
for bndl in bundles:
stage_empty_bundle(d, bndl)
-def copy_old_versions(d):
- for prevver in d.getVar('SWUPD_DELTAPACK_VERSIONS', True).split():
- if not os.path.exists(os.path.join(d.expand('${DEPLOY_DIR_SWUPD}/image'), prevver)):
- pattern = d.expand('${DEPLOY_DIR_IMAGE}/${IMAGE_BASENAME}*-%s-swupd.tar' % prevver)
- prevver_tar = glob.glob(pattern)
- if not prevver_tar or len(prevver_tar) > 1 or not os.path.exists(prevver_tar[0]):
- bb.fatal("Creating swupd delta packs against %s is not possible because %s is not available." %
- (prevver, pattern))
- cmd = ['tar', '-C', d.getVar('DEPLOY_DIR_SWUPD', True), '-xf', prevver_tar[0]]
- output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
- if output:
- bb.fatal('Unexpected output from the following command:\n%s\n%s' % (cmd, output))
-
def download_manifests(content_url, version, component, to_dir):
"""
Download one manifest file and recursively all manifests referenced by it.