From: Alistair Francis Date: Fri, 29 May 2015 06:32:35 +0000 (+1000) Subject: target-microblaze: Disable stack protection by default X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f44c475cb6ded298486a589c4205ab70e485b48c;p=sdk%2Femulator%2Fqemu.git target-microblaze: Disable stack protection by default Stack protection is not available when the MMU is enabled. As the MMU is enabled by default, disable stack protection by default. Signed-off-by: Alistair Francis Signed-off-by: Edgar E. Iglesias --- diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c index b857056..13ae49a 100644 --- a/target-microblaze/cpu.c +++ b/target-microblaze/cpu.c @@ -162,7 +162,7 @@ static const VMStateDescription vmstate_mb_cpu = { static Property mb_properties[] = { DEFINE_PROP_UINT32("base-vectors", MicroBlazeCPU, cfg.base_vectors, 0), DEFINE_PROP_BOOL("use-stack-protection", MicroBlazeCPU, cfg.stackprot, - true), + false), /* If use-fpu > 0 - FPU is enabled * If use-fpu = 2 - Floating point conversion and square root instructions * are enabled