2010-02-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
* util/grub-mkconfig.in: Export GRUB_INIT_TUNE. * util/grub.d/00_header.in: Handle GRUB_INIT_TUNE.
This commit is contained in:
parent
d9f31a41ca
commit
0a39de87d9
3 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-02-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||
|
||||
* util/grub-mkconfig.in: Export GRUB_INIT_TUNE.
|
||||
* util/grub.d/00_header.in: Handle GRUB_INIT_TUNE.
|
||||
|
||||
2010-02-16 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Remove any reference to non-free fonts.
|
||||
|
|
|
@ -222,7 +222,8 @@ export GRUB_DEFAULT \
|
|||
GRUB_GFXMODE \
|
||||
GRUB_THEME \
|
||||
GRUB_GFXPAYLOAD_LINUX \
|
||||
GRUB_DISABLE_OS_PROBER
|
||||
GRUB_DISABLE_OS_PROBER \
|
||||
GRUB_INIT_TUNE
|
||||
|
||||
if test "x${grub_cfg}" != "x"; then
|
||||
rm -f ${grub_cfg}.new
|
||||
|
|
|
@ -158,3 +158,11 @@ else
|
|||
set timeout=${GRUB_TIMEOUT}
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Play an initial tune
|
||||
if [ "x${GRUB_INIT_TUNE}" != "x" ] ; then
|
||||
cat << EOF
|
||||
insmod play
|
||||
play ${GRUB_INIT_TUNE}
|
||||
EOF
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue