xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rombios: pause for a keypress after a failed boot
@ 2010-07-06 13:59 Tim Deegan
  2010-07-07  1:43 ` [PATCH] rombios: pause for a keypress after a failedboot James Harper
  0 siblings, 1 reply; 6+ messages in thread
From: Tim Deegan @ 2010-07-06 13:59 UTC (permalink / raw)
  To: xen-devel

rombios: inform the user and pause for a keypress after a failed boot
rather than powering off immediately. 

Signed-off-by: Tim Deegan <Tim.Deegan@citrix.com>

diff -r e8f6f9a86f55 tools/firmware/rombios/rombios.c
--- a/tools/firmware/rombios/rombios.c	Tue Jul 06 14:30:39 2010 +0100
+++ b/tools/firmware/rombios/rombios.c	Tue Jul 06 14:42:04 2010 +0100
@@ -8243,7 +8243,27 @@
     write_word(ebda_seg, IPL_BOOTFIRST_OFFSET, 0xFFFF);
     /* Reset boot sequence */
     write_word(ebda_seg, IPL_SEQUENCE_OFFSET, 0xFFFF);
-  } else if (bootdev == 0) BX_PANIC("No bootable device.\n");
+  } else if (bootdev == 0) {
+    printf("\nNo bootable device.\n");
+    printf("Reboot or press any key to retry.");
+    write_word(ebda_seg, IPL_SEQUENCE_OFFSET, 0xFFFF);
+ASM_START
+    sti
+ASM_END
+    {
+      Bit8u sc, ac;
+      while(!dequeue_key(&sc, &ac, 1)) {
+ASM_START
+        hlt
+ASM_END
+      }
+    }
+ASM_START
+    cli
+ASM_END
+    printf("\n\n");
+    return;
+  }
 
   /* Translate from CMOS runes to an IPL table offset by subtracting 1 */
   bootdev -= 1;

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-07-07  9:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-06 13:59 [PATCH] rombios: pause for a keypress after a failed boot Tim Deegan
2010-07-07  1:43 ` [PATCH] rombios: pause for a keypress after a failedboot James Harper
2010-07-07  6:26   ` Keir Fraser
2010-07-07  6:29     ` James Harper
2010-07-07  6:36       ` Keir Fraser
2010-07-07  9:49     ` Tim Deegan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).