diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-07-12 12:15:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-16 10:04:16 +0100 |
commit | 655da29dacc439ddb08e0607424a0f8c80681fed (patch) | |
tree | 6f898c9babf4f6f50e28953466a2dd306548850b /meta/lib/oeqa/utils | |
parent | 2079a30b1f0d56271484adc708aa43c3f2808e2e (diff) | |
download | poky-655da29dacc439ddb08e0607424a0f8c80681fed.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.
(From OE-Core rev: ba58f1fe8fb7a0e3ff9320dfc108235d484da6a1)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 |
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: | |||
18 | self.rootfs = rootfs | 18 | self.rootfs = rootfs |
19 | 19 | ||
20 | self.streampath = '/tmp/qemuconnection.%s' % os.getpid() | 20 | self.streampath = '/tmp/qemuconnection.%s' % os.getpid() |
21 | self.qemuparams = 'bootparams="console=ttyS0" qemuparams="-snapshot -serial unix:%s,server,nowait"' % self.streampath | 21 | self.qemuparams = 'bootparams="console=ttyS0" qemuparams="-serial unix:%s,server,nowait"' % self.streampath |
22 | self.qemupid = None | 22 | self.qemupid = None |
23 | self.ip = None | 23 | self.ip = None |
24 | 24 | ||