diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-06-01 17:12:28 +0200 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-06-01 17:12:28 +0200 |
commit | 9424b5f36e2ef87d4bd01b9b4e5fc83965ec33b6 (patch) | |
tree | 91317ac1120b2cb8b5c1ef1c1c5695b6f3516a4f /examples | |
parent | f3d700174eed69d612650df3c63e8b56cebf2c52 (diff) | |
download | rumba-9424b5f36e2ef87d4bd01b9b4e5fc83965ec33b6.tar.gz rumba-9424b5f36e2ef87d4bd01b9b4e5fc83965ec33b6.zip |
qemu plugin: automatic download of buildroot images
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) |