diff options
author | Erik Botö <erik.boto@pelagicore.com> | 2017-11-06 10:13:04 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-08 22:24:03 +0000 |
commit | 09992f2fb45eedccaa9fc99b1485ec9c163d1f2b (patch) | |
tree | 66f399a74d83d3e6478cfcba3d67b4590c128f9e /meta/lib | |
parent | 3b67c666bae51c715fcbdd27c2cce8bd2b4e76eb (diff) | |
download | poky-09992f2fb45eedccaa9fc99b1485ec9c163d1f2b.tar.gz |
masterimage.py: fix stop()
The stop() function is called in the context of the masterimage,
so self.master should be used instead of self.connection which is
undefined at that time.
[YOCTO #11524]
(From OE-Core rev: adfe79dee90b6e080b97869444882b84468d49ba)
Signed-off-by: Erik Botö <erik.boto@pelagicore.com>
Signed-off-by: Stephano Cetola <stephano.cetola@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/controllers/masterimage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/controllers/masterimage.py b/meta/lib/oeqa/controllers/masterimage.py index fe90967923..e2ff3f12c2 100644 --- a/meta/lib/oeqa/controllers/masterimage.py +++ b/meta/lib/oeqa/controllers/masterimage.py | |||
@@ -156,7 +156,7 @@ class MasterImageHardwareTarget(oeqa.targetcontrol.BaseTarget, metaclass=ABCMeta | |||
156 | 156 | ||
157 | def stop(self): | 157 | def stop(self): |
158 | bb.plain("%s - reboot/powercycle target" % self.pn) | 158 | bb.plain("%s - reboot/powercycle target" % self.pn) |
159 | self.power_cycle(self.connection) | 159 | self.power_cycle(self.master) |
160 | 160 | ||
161 | 161 | ||
162 | class SystemdbootTarget(MasterImageHardwareTarget): | 162 | class SystemdbootTarget(MasterImageHardwareTarget): |