1
0
mirror of https://github.com/ARM-software/devlib.git synced 2024-10-05 18:30:50 +01:00

Merge pull request #42 from ep1cman/fixes

LinuxTarget: now used 'uname' instead of 'busybox uname'
This commit is contained in:
setrofim 2016-06-16 14:50:49 +01:00 committed by GitHub
commit ee521f64e6

View File

@ -525,7 +525,7 @@ class LinuxTarget(Target):
@property
@memoized
def abi(self):
value = self.execute('{} uname -m'.format(self.busybox)).strip()
value = self.execute('uname -m').strip()
for abi, architectures in ABI_MAP.iteritems():
if value in architectures:
result = abi