aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-07-12 12:15:19 +0300
committerSaul Wold <sgw@linux.intel.com>2013-07-15 10:29:27 -0700
commitba58f1fe8fb7a0e3ff9320dfc108235d484da6a1 (patch)
treebf92e0976a5e2c7b865ef40e1d69261ddd4d1c2d /meta/lib
parent1b39d57e7b5c9b69d565cf4d188ebc2f14e66ae6 (diff)
downloadopenembedded-core-ba58f1fe8fb7a0e3ff9320dfc108235d484da6a1.tar.gz
classes/testimage.bbclass: use a copy of rootfs for tests
Make a copy of the rootfs and test that. We can now drop the snapshot option. Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index ec9298863a..1051b2b3d8 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -18,7 +18,7 @@ class QemuRunner:
self.rootfs = rootfs
self.streampath = '/tmp/qemuconnection.%s' % os.getpid()
- self.qemuparams = 'bootparams="console=ttyS0" qemuparams="-snapshot -serial unix:%s,server,nowait"' % self.streampath
+ self.qemuparams = 'bootparams="console=ttyS0" qemuparams="-serial unix:%s,server,nowait"' % self.streampath
self.qemupid = None
self.ip = None