aboutsummaryrefslogtreecommitdiff
path: root/rumba/testbeds/qemu.py
diff options
context:
space:
mode:
Diffstat (limited to 'rumba/testbeds/qemu.py')
-rw-r--r--rumba/testbeds/qemu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rumba/testbeds/qemu.py b/rumba/testbeds/qemu.py
index 5c8c7b3..e4a35ab 100644
--- a/rumba/testbeds/qemu.py
+++ b/rumba/testbeds/qemu.py
@@ -143,7 +143,7 @@ class Testbed(mod.Testbed):
# local images
url_prefix = "https://bitbucket.org/vmaffione/rina-images/downloads/"
if not self.bzimage_path:
- bzimage = '%s.bzImage' % (experiment.prototype_name())
+ bzimage = '%s.prod.bzImage' % (experiment.prototype_name())
self.bzimage_path = os.path.join(mod.cache_dir, bzimage)
if not os.path.exists(self.bzimage_path):
logger.info("Downloading %s" % (url_prefix + bzimage))
@@ -151,7 +151,7 @@ class Testbed(mod.Testbed):
filename=self.bzimage_path)
print("\n")
if not self.initramfs_path:
- initramfs = '%s.rootfs.cpio' % (experiment.prototype_name())
+ initramfs = '%s.prod.rootfs.cpio' % (experiment.prototype_name())
self.initramfs_path = os.path.join(mod.cache_dir, initramfs)
if not os.path.exists(self.initramfs_path):
logger.info("Downloading %s" % (url_prefix + initramfs))