it will be used for for 2 purposes, 1st is to provide to cpu name resolving class for machine 'none' cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model) and later to drop a bunch of ifdefs *-user/main.c that set default cpu_model.
Take default type from linux-user and use it as TARGET_DEFAULT_CPU_TYPE, which should work for *-user targets. Signed-off-by: Igor Mammedov <imamm...@redhat.com> --- CC: Stafford Horne <sho...@gmail.com> --- target/openrisc/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/target/openrisc/cpu.h b/target/openrisc/cpu.h index cc22dc8..8d1a87e 100644 --- a/target/openrisc/cpu.h +++ b/target/openrisc/cpu.h @@ -394,6 +394,7 @@ int cpu_openrisc_get_phys_data(OpenRISCCPU *cpu, #define OPENRISC_CPU_TYPE_SUFFIX "-" TYPE_OPENRISC_CPU #define OPENRISC_CPU_TYPE_NAME(model) model OPENRISC_CPU_TYPE_SUFFIX +#define TARGET_DEFAULT_CPU_TYPE OPENRISC_CPU_TYPE_NAME("or1200") #include "exec/cpu-all.h" -- 2.7.4