From eb239c65d028c9e7fcc3d0db3754e9be242dc2eb Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 6 Dec 2016 11:01:09 +0000 Subject: [PATCH] LinuxDevice: Added supported eabi property. Added property to linux device to return list of supported abis to be consistent with android devices. Currently only returns a list containing the primary abi. --- wlauto/common/linux/device.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wlauto/common/linux/device.py b/wlauto/common/linux/device.py index db76f2ca..c6ce9e4f 100644 --- a/wlauto/common/linux/device.py +++ b/wlauto/common/linux/device.py @@ -136,6 +136,10 @@ class BaseLinuxDevice(Device): # pylint: disable=abstract-method self._abi = val return self._abi + @property + def supported_abi(self): + return [self.abi] + @property def online_cpus(self): val = self.get_sysfile_value('/sys/devices/system/cpu/online')