Applied both patches, thank you!
On Fri, May 29, 2015 at 02:01:29PM +0300, riku.voipio(a)linaro.org wrote:
From: Riku Voipio <riku.voipio(a)linaro.org>
Add the architectures to allow running LKP on
arm based architectures. The actual information
doesn't seem to be used (no use on _system_arch
or systemArch found with grep), so alternative
could be the entire detection logic.
Signed-off-by: Riku Voipio <riku.voipio(a)linaro.org>
---
lib/detect-system.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lib/detect-system.sh b/lib/detect-system.sh
index 65de2ee..7460c15 100755
--- a/lib/detect-system.sh
+++ b/lib/detect-system.sh
@@ -25,6 +25,10 @@ parse_executable_arch()
_system_arch=x86_64;;
*80[3456]86)
_system_arch=i386;;
+ *AArch64)
+ _system_arch=aarch64;;
+ *ARM)
+ _system_arch=arm;;
*)
_system_arch=unknown
return 1;;
--
2.1.4