2007-05-04 07:11:44 +00:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
2009-08-08 17:59:19 +00:00
|
|
|
# grub-mkconfig helper script.
|
2010-01-07 18:20:11 +00:00
|
|
|
# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc.
|
2007-05-04 07:11:44 +00:00
|
|
|
#
|
2007-07-21 23:32:33 +00:00
|
|
|
# GRUB is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2007-05-04 07:11:44 +00:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2007-07-21 23:32:33 +00:00
|
|
|
# GRUB is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-05-04 07:11:44 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-21 23:32:33 +00:00
|
|
|
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2007-05-04 07:11:44 +00:00
|
|
|
|
2008-01-14 12:24:48 +00:00
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
2009-11-17 11:32:05 +00:00
|
|
|
bindir=@bindir@
|
2008-01-10 13:52:24 +00:00
|
|
|
libdir=@libdir@
|
2008-09-29 14:57:05 +00:00
|
|
|
. ${libdir}/grub/grub-mkconfig_lib
|
2008-01-10 13:52:24 +00:00
|
|
|
|
2009-11-16 20:19:42 +00:00
|
|
|
export TEXTDOMAIN=@PACKAGE@
|
2009-11-17 11:32:05 +00:00
|
|
|
export TEXTDOMAINDIR=@LOCALEDIR@
|
2009-11-16 20:19:42 +00:00
|
|
|
|
2010-01-07 18:20:11 +00:00
|
|
|
CLASS="--class gnu-linux --class gnu --class os"
|
|
|
|
|
2008-01-10 13:52:24 +00:00
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
2007-05-04 07:11:44 +00:00
|
|
|
OS=GNU/Linux
|
|
|
|
else
|
|
|
|
OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
2010-01-07 18:20:11 +00:00
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr '[A-Z]' '[a-z]') ${CLASS}"
|
2007-05-04 07:11:44 +00:00
|
|
|
fi
|
|
|
|
|
2008-06-26 07:03:26 +00:00
|
|
|
# loop-AES arranges things so that /dev/loop/X can be our root device, but
|
|
|
|
# the initrds that Linux uses don't like that.
|
|
|
|
case ${GRUB_DEVICE} in
|
|
|
|
/dev/loop/*|/dev/loop[0-9])
|
|
|
|
GRUB_DEVICE=`losetup ${GRUB_DEVICE} | sed -e "s/^[^(]*(\([^)]\+\)).*/\1/"`
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
|
|
|
|
|| ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" ; then
|
|
|
|
LINUX_ROOT_DEVICE=${GRUB_DEVICE}
|
2008-05-30 21:53:17 +00:00
|
|
|
else
|
|
|
|
LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
|
|
|
|
fi
|
|
|
|
|
2009-03-29 02:23:12 +00:00
|
|
|
linux_entry ()
|
|
|
|
{
|
2009-11-16 20:19:42 +00:00
|
|
|
os="$1"
|
|
|
|
version="$2"
|
|
|
|
recovery="$3"
|
|
|
|
args="$4"
|
|
|
|
if ${recovery} ; then
|
|
|
|
title="$(gettext "%s, with Linux %s (recovery mode)")"
|
|
|
|
else
|
|
|
|
title="$(gettext "%s, with Linux %s")"
|
|
|
|
fi
|
2010-02-03 00:24:07 +00:00
|
|
|
printf "menuentry \"${title}\" ${CLASS} {\n" "${os}" "${version}"
|
2009-11-20 08:41:20 +00:00
|
|
|
save_default_entry | sed -e "s/^/\t/"
|
2010-01-20 17:01:12 +00:00
|
|
|
|
|
|
|
# Use ELILO's generic "efifb" when it's known to be available.
|
|
|
|
# FIXME: We need an interface to select vesafb in case efifb can't be used.
|
2010-02-10 18:53:13 +00:00
|
|
|
if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
|
2010-02-26 13:32:24 +00:00
|
|
|
if grep -qx "CONFIG_FB_EFI=y" /boot/config-${version} 2> /dev/null \
|
|
|
|
&& grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" /boot/config-${version} 2> /dev/null; then
|
2010-02-10 18:53:13 +00:00
|
|
|
cat << EOF
|
2010-01-20 17:01:12 +00:00
|
|
|
set gfxpayload=keep
|
2010-02-10 18:53:13 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
cat << EOF
|
|
|
|
set gfxpayload=$GRUB_GFXPAYLOAD_LINUX
|
2010-01-20 17:01:12 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2009-10-26 16:28:04 +00:00
|
|
|
if [ -z "${prepare_boot_cache}" ]; then
|
|
|
|
prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/")"
|
|
|
|
fi
|
|
|
|
printf '%s\n' "${prepare_boot_cache}"
|
2009-03-29 02:23:12 +00:00
|
|
|
cat << EOF
|
2010-01-09 22:02:00 +00:00
|
|
|
echo $(printf "$(gettext "Loading Linux %s ...")" ${version})
|
2009-11-16 20:19:42 +00:00
|
|
|
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
|
2009-03-29 02:23:12 +00:00
|
|
|
EOF
|
|
|
|
if test -n "${initrd}" ; then
|
|
|
|
cat << EOF
|
2010-01-09 22:02:00 +00:00
|
|
|
echo $(gettext "Loading initial ramdisk ...")
|
2009-03-29 02:23:12 +00:00
|
|
|
initrd ${rel_dirname}/${initrd}
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
cat << EOF
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2007-05-13 19:28:54 +00:00
|
|
|
list=`for i in /boot/vmlinu[xz]-* /vmlinu[xz]-* ; do
|
2008-01-10 13:52:24 +00:00
|
|
|
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
|
2007-05-13 19:28:54 +00:00
|
|
|
done`
|
2009-10-26 16:28:04 +00:00
|
|
|
prepare_boot_cache=
|
2007-05-13 19:28:54 +00:00
|
|
|
|
|
|
|
while [ "x$list" != "x" ] ; do
|
2009-08-07 12:05:06 +00:00
|
|
|
linux=`version_find_latest $list`
|
2007-05-13 19:28:54 +00:00
|
|
|
echo "Found linux image: $linux" >&2
|
|
|
|
basename=`basename $linux`
|
|
|
|
dirname=`dirname $linux`
|
2008-05-30 11:04:08 +00:00
|
|
|
rel_dirname=`make_system_path_relative_to_its_root $dirname`
|
2007-05-13 19:28:54 +00:00
|
|
|
version=`echo $basename | sed -e "s,^[^0-9]*-,,g"`
|
2008-01-02 08:34:41 +00:00
|
|
|
alt_version=`echo $version | sed -e "s,\.old$,,g"`
|
2008-06-26 07:03:26 +00:00
|
|
|
linux_root_device_thisversion="${LINUX_ROOT_DEVICE}"
|
2007-12-29 20:53:20 +00:00
|
|
|
|
|
|
|
initrd=
|
2008-01-02 08:34:41 +00:00
|
|
|
for i in "initrd.img-${version}" "initrd-${version}.img" \
|
2009-06-29 02:59:53 +00:00
|
|
|
"initrd-${version}" "initrd.img-${alt_version}" \
|
|
|
|
"initrd-${alt_version}.img" "initrd-${alt_version}"; do
|
2007-12-29 20:53:20 +00:00
|
|
|
if test -e "${dirname}/${i}" ; then
|
|
|
|
initrd="$i"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if test -n "${initrd}" ; then
|
|
|
|
echo "Found initrd image: ${dirname}/${initrd}" >&2
|
2008-06-26 07:03:26 +00:00
|
|
|
else
|
|
|
|
# "UUID=" magic is parsed by initrds. Since there's no initrd, it can't work here.
|
|
|
|
linux_root_device_thisversion=${GRUB_DEVICE}
|
2007-12-29 20:53:20 +00:00
|
|
|
fi
|
|
|
|
|
2009-11-16 20:19:42 +00:00
|
|
|
linux_entry "${OS}" "${version}" false \
|
2009-03-29 02:23:12 +00:00
|
|
|
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
|
2009-06-21 11:21:59 +00:00
|
|
|
if [ "x${GRUB_DISABLE_LINUX_RECOVERY}" != "xtrue" ]; then
|
2009-11-16 20:19:42 +00:00
|
|
|
linux_entry "${OS}" "${version}" true \
|
2009-06-21 11:21:59 +00:00
|
|
|
"single ${GRUB_CMDLINE_LINUX}"
|
|
|
|
fi
|
2007-12-29 20:53:20 +00:00
|
|
|
|
2007-05-13 19:28:54 +00:00
|
|
|
list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '`
|
2007-05-04 07:11:44 +00:00
|
|
|
done
|