1
0
Fork 0

arm64: setup: report ELF_PLATFORM as the machine for utsname

uname -m reports the machine field from the current utsname, which should
reflect the endianness of the system.

This patch reports ELF_PLATFORM for the field, so that everything appears
consistent from userspace.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
hifive-unleashed-5.1
Will Deacon 2013-10-11 14:52:11 +01:00 committed by Catalin Marinas
parent 5436b5c830
commit 94ed1f2cb5
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ static void __init setup_processor(void)
printk("CPU: %s [%08x] revision %d\n",
cpu_name, read_cpuid_id(), read_cpuid_id() & 15);
sprintf(init_utsname()->machine, "aarch64");
sprintf(init_utsname()->machine, ELF_PLATFORM);
elf_hwcap = 0;
}