]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2008-01-19 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Sat, 19 Jan 2008 22:19:20 +0000 (22:19 +0000)
committerrobertmh <robertmh@localhost>
Sat, 19 Jan 2008 22:19:20 +0000 (22:19 +0000)
        * kern/powerpc/ieee1275/openfw.c (grub_halt): Issue "power-off"
        command after "shut-down", since implementations differ on which
        the command for halt is.

ChangeLog
kern/powerpc/ieee1275/openfw.c

index 776060afcef72f748e955117af40958d54a3e1ab..dfec837cea9010f22e1805125815c612ca530040 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-01-19  Robert Millan  <rmh@aybabtu.com>
+
+       * kern/powerpc/ieee1275/openfw.c (grub_halt): Issue "power-off"
+       command after "shut-down", since implementations differ on which
+       the command for halt is.
+
 2008-01-19  Robert Millan  <rmh@aybabtu.com>
 
        * include/grub/i386/linuxbios/console.h: Add header protection.
index 7e4f5c5659dfa2d5b1d0061d0501a6f7932ebcda..c9e80135583ff8aafb62d8aea8ace95d32788952 100644 (file)
@@ -401,5 +401,8 @@ grub_reboot (void)
 void
 grub_halt (void)
 {
+  /* Not standarized.  We try both known commands.  */
+
   grub_ieee1275_interpret ("shut-down", 0);
+  grub_ieee1275_interpret ("power-off", 0);
 }