xen: arm: indicate when we have early paniced
authorIan Campbell <ian.campbell@citrix.com>
Thu, 22 Aug 2013 16:01:57 +0000 (17:01 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 27 Aug 2013 13:36:07 +0000 (14:36 +0100)
Otherwise the hypervisor simply appears to stop after a message which may or
may not look all that severe.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Julien Grall <julien.grall@linaro.org>
xen/arch/arm/early_printk.c

index ca151a5b21e6d7f2076ade645f61cbfc64532903..058d0447b4a79a456de2b5479761c5f1a4d755de 100644 (file)
@@ -61,5 +61,7 @@ early_panic(const char *fmt, ...)
     early_vprintk(fmt, args);
     va_end(args);
 
+    early_printk("\nEarly Panic: Stopping\n");
+
     while(1);
 }