diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-06-01 15:51:19 +0000 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-06-01 15:51:19 +0000 |
commit | 430f1a369f9dbc1328abb3ea750cfcc0c4db0c3e (patch) | |
tree | 684e1fca97b1414843ef61a7840dceeeaa8c826b /examples | |
parent | 7d816ccc891934d34465fc30cc8de1b4d55381f6 (diff) | |
parent | 15687f1938dd5faa68eccfdcacc45fb4b0644b45 (diff) | |
download | rumba-430f1a369f9dbc1328abb3ea750cfcc0c4db0c3e.tar.gz rumba-430f1a369f9dbc1328abb3ea750cfcc0c4db0c3e.zip |
Merge branch 'download' into 'master'
QEMU plugin: download buildroot images if not provided by the user
See merge request !51
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/two-layers.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/two-layers.py b/examples/two-layers.py index b4e4e64..b3622fd 100755 --- a/examples/two-layers.py +++ b/examples/two-layers.py @@ -48,11 +48,9 @@ d = Node("d", tb = qemu.Testbed(exp_name = "twolayers", username = "root", - password = "root", - bzimage = '/home/vmaffione/git/rlite/demo/buildroot/bzImage', - initramfs = '/home/vmaffione/git/rlite/demo/buildroot/rootfs.cpio') + password = "root") -exp = rl.Experiment(tb, nodes = [a, b, c, d]) +exp = irati.Experiment(tb, nodes = [a, b, c, d]) print(exp) |