aarch64: use qemu-aarch64 instead qemu-arm64
authorChanho Park <chanho61.park@samsung.com>
Fri, 27 Jun 2014 05:28:50 +0000 (14:28 +0900)
committerYongfeng Du <dolpher.du@intel.com>
Mon, 17 Nov 2014 03:10:58 +0000 (11:10 +0800)
In qemu version 2.0, we use qemu-aarch64 instead of qemu-arm64. Thus,
this mic script should be changed to use correct qemu path of arm64
platform.

Change-Id: I3d910511cbece0cafdfb72f7846cbdadcd6c1f2d
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
mic/utils/misc.py

index 243051e..eefa822 100644 (file)
@@ -977,7 +977,7 @@ def setup_qemu_emulator(rootdir, arch):
     # qemu_emulator is a special case, we can't use find_binary_path
     # qemu emulator should be a statically-linked executable file
     if arch == "aarch64":
-        arm_binary = "qemu-arm64"
+        arm_binary = "qemu-aarch64"
         node = "/proc/sys/fs/binfmt_misc/aarch64"
     else:
         arm_binary = "qemu-arm"