]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2010-02-07 Vladimir Serbinenko <phcoder@gmail.com>
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 7 Feb 2010 21:49:45 +0000 (22:49 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 7 Feb 2010 21:49:45 +0000 (22:49 +0100)
* kern/ieee1275/openfw.c (grub_halt): Try executing "poweroff".

ChangeLog
kern/ieee1275/openfw.c

index f7b2ce8bf66c9ba0e2cd89cb548bb3e0aadc80fe..ff8f3d41ca059307c175c0350731ad0630f0357a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-02-07  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * kern/ieee1275/openfw.c (grub_halt): Try executing "poweroff".
+
 2010-02-07  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * genkernsyms.sh.in: Use TARGET_CC.
index dd9a9138facbc34ff93e042c1269d1a4d65803bd..e5f565c4c07379fc804958d28a060a4de1f05018 100644 (file)
@@ -405,8 +405,9 @@ grub_reboot (void)
 void
 grub_halt (void)
 {
-  /* Not standardized.  We try both known commands.  */
+  /* Not standardized.  We try three known commands.  */
 
   grub_ieee1275_interpret ("shut-down", 0);
   grub_ieee1275_interpret ("power-off", 0);
+  grub_ieee1275_interpret ("poweroff", 0);
 }