mirror of
https://github.com/ARM-software/devlib.git
synced 2025-01-31 02:00:45 +00:00
Merge pull request #42 from ep1cman/fixes
LinuxTarget: now used 'uname' instead of 'busybox uname'
This commit is contained in:
commit
ee521f64e6
@ -525,7 +525,7 @@ class LinuxTarget(Target):
|
|||||||
@property
|
@property
|
||||||
@memoized
|
@memoized
|
||||||
def abi(self):
|
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():
|
for abi, architectures in ABI_MAP.iteritems():
|
||||||
if value in architectures:
|
if value in architectures:
|
||||||
result = abi
|
result = abi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user