From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54348) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UX4Ct-00044b-UA for qemu-devel@nongnu.org; Tue, 30 Apr 2013 02:38:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UX4Cp-0003ZR-1q for qemu-devel@nongnu.org; Tue, 30 Apr 2013 02:38:31 -0400 Received: from mail-da0-x232.google.com ([2607:f8b0:400e:c00::232]:48612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UX4Co-0003Yn-SD for qemu-devel@nongnu.org; Tue, 30 Apr 2013 02:38:26 -0400 Received: by mail-da0-f50.google.com with SMTP id a4so107533dad.37 for ; Mon, 29 Apr 2013 23:38:26 -0700 (PDT) From: John Rigby Date: Tue, 30 Apr 2013 00:37:35 -0600 Message-Id: <1367303855-9666-1-git-send-email-john.rigby@linaro.org> Subject: [Qemu-devel] [PATCH v2 05/12] linux-user: Don't treat aarch64 cpu names specially List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Cc: Peter Maydell , Alexander Graf , Riku Voipio From: Alexander Graf 32-bit ARM has a lot of different names for different types of CPUs it supports. On AArch64, we don't have this, so we really don't want to execute the 32-bit logic. Stub it out for AArch64 linux-user guests. Signed-off-by: Alexander Graf --- linux-user/cpu-uname.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-user/cpu-uname.c b/linux-user/cpu-uname.c index 59cd647..89bdb91 100644 --- a/linux-user/cpu-uname.c +++ b/linux-user/cpu-uname.c @@ -30,7 +30,8 @@ * return here */ const char *cpu_to_uname_machine(void *cpu_env) { -#ifdef TARGET_ARM +#if defined(TARGET_ARM) && !defined(TARGET_AARCH64) + /* utsname machine name on linux arm is CPU arch name + endianness, e.g. * armv7l; to get a list of CPU arch names from the linux source, use: * grep arch_name: -A1 linux/arch/arm/mm/proc-*.S -- 1.7.9.5