mirror of https://github.com/xemu-project/xemu.git
linux-user/mips: Select Loongson CPU for Loongson binaries
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240814133928.6746-5-philmd@linaro.org>
This commit is contained in:
parent
309ce6af94
commit
e922abf5c0
|
@ -14,6 +14,12 @@ static inline const char *cpu_get_model(uint32_t eflags)
|
||||||
case EF_MIPS_MACH_OCTEON2:
|
case EF_MIPS_MACH_OCTEON2:
|
||||||
case EF_MIPS_MACH_OCTEON3:
|
case EF_MIPS_MACH_OCTEON3:
|
||||||
return "Octeon68XX";
|
return "Octeon68XX";
|
||||||
|
case EF_MIPS_MACH_LS2E:
|
||||||
|
return "Loongson-2E";
|
||||||
|
case EF_MIPS_MACH_LS2F:
|
||||||
|
return "Loongson-2F";
|
||||||
|
case EF_MIPS_MACH_LS3A:
|
||||||
|
return "Loongson-3A1000";
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue