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.
This commit is contained in:
parent
80a7121355
commit
ac96441c81
4 changed files with 17 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 ...")"
|
||||
|
|
Loading…
Reference in a new issue