]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2012-02-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 19 Feb 2012 16:06:00 +0000 (17:06 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 19 Feb 2012 16:06:00 +0000 (17:06 +0100)
* util/grub-mkconfig.in (GRUB_CMDLINE_GNUMACH): Export variable.
* util/grub.d/10_hurd.in: Include GRUB_CMDLINE_GNUMACH in gnumach
command line.
* docs/grub.texi (Simple configuration): Document
GRUB_CMDLINE_GNUMACH.

ChangeLog
docs/grub.texi
util/grub-mkconfig.in
util/grub.d/10_hurd.in

index f2acda5e6f97a24ca04cb9a7f149a12043539d92..20499d7196fb741506cd8764e4496b8032965f2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,12 @@
-2012-02-18 Vladimir Serbinenko  <phcoder@gmail.com>
+2012-02-19  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+       * util/grub-mkconfig.in (GRUB_CMDLINE_GNUMACH): Export variable.
+       * util/grub.d/10_hurd.in: Include GRUB_CMDLINE_GNUMACH in gnumach
+       command line.
+       * docs/grub.texi (Simple configuration): Document
+       GRUB_CMDLINE_GNUMACH.
+
+2012-02-18  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * conf/Makefile.common (platform_SCRIPTS): New variable.
        (platform_PROGRAMS): Likewise.
        * grub-core/Makefile.core.def (gdb_grub): Mark for install.
        (gmodule.pl): Likewise.
 
-2012-02-18 Vladimir Serbinenko  <phcoder@gmail.com>
+2012-02-18  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Replace grub_checkkey with grub_getkey_noblock.
 
        * grub-core/kern/term.c (grub_checkkey): Replaced with ...
        (grub_getkey_noblock): ... this. All users updated.
 
-2012-02-18 Vladimir Serbinenko  <phcoder@gmail.com>
+2012-02-18  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/kern/emu/console.c: Move to ...
        * grub-core/term/emu/console.c: ...here.
index 2c737593d40e7aa39b811a913f6e99b805961973..c49be91cc80cb2eb56e76af4e3ad1bfb2e053aa0 100644 (file)
@@ -1202,6 +1202,9 @@ only to the default menu entry, after those listed in
 As @samp{GRUB_CMDLINE_LINUX} and @samp{GRUB_CMDLINE_LINUX_DEFAULT}, but for
 NetBSD.
 
+@item GRUB_CMDLINE_GNUMACH
+As @samp{GRUB_CMDLINE_LINUX}, but for GNU Mach.
+
 @item GRUB_CMDLINE_XEN
 @itemx GRUB_CMDLINE_XEN_DEFAULT
 The values of these options are appended to the values of
index b5144e3a4b650a10ebe2f1e37961f5708a2bcc16..9c405053ff84ac00549400ca42cacb40fb9262aa 100644 (file)
@@ -231,6 +231,7 @@ export GRUB_DEFAULT \
   GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT \
   GRUB_CMDLINE_NETBSD \
   GRUB_CMDLINE_NETBSD_DEFAULT \
+  GRUB_CMDLINE_GNUMACH \
   GRUB_TERMINAL_INPUT \
   GRUB_TERMINAL_OUTPUT \
   GRUB_SERIAL_COMMAND \
index 23099f2250b36677cae6daab1b50a0a758461909..6a0d22b47b32aae8aa2fd61254ba020cfcc87503 100644 (file)
@@ -87,7 +87,7 @@ EOF
   message="$(gettext_printf "Loading GNU Mach ...")"
   cat << EOF
        echo            '$message'
-       multiboot       ${kernel} root=device:${GRUB_DEVICE#/dev/}
+       multiboot       ${kernel} root=device:${GRUB_DEVICE#/dev/} ${GRUB_CMDLINE_GNUMACH}
 EOF
   save_default_entry | sed -e "s/^/\t/"
   prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
@@ -111,7 +111,7 @@ EOF
   message="$(gettext_printf "Loading GNU Mach ...")"
   cat << EOF
        echo            '$message'
-       multiboot       ${kernel} root=device:${GRUB_DEVICE#/dev/} -s
+       multiboot       ${kernel} root=device:${GRUB_DEVICE#/dev/} -s ${GRUB_CMDLINE_GNUMACH}
 EOF
   prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
   message="$(gettext_printf "Loading the Hurd ...")"