2010-06-29 15:20:49 +00:00
|
|
|
#! /bin/sh
|
|
|
|
set -e
|
2007-05-04 07:11:44 +00:00
|
|
|
|
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@
|
2011-10-23 20:40:26 +00:00
|
|
|
datarootdir=@datarootdir@
|
2011-07-02 19:22:19 +00:00
|
|
|
. ${libdir}/@PACKAGE@/grub-mkconfig_lib
|
2008-01-10 13:52:24 +00:00
|
|
|
|
2009-11-16 20:19:42 +00:00
|
|
|
export TEXTDOMAIN=@PACKAGE@
|
2010-04-14 12:59:58 +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"
|
2011-02-09 11:23:11 +00:00
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1) ${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" ] \
|
2010-07-01 21:24:21 +00:00
|
|
|
|| ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
|
2010-07-02 11:32:05 +00:00
|
|
|
|| uses_abstraction "${GRUB_DEVICE}" lvm; then
|
2008-06-26 07:03:26 +00:00
|
|
|
LINUX_ROOT_DEVICE=${GRUB_DEVICE}
|
2008-05-30 21:53:17 +00:00
|
|
|
else
|
|
|
|
LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
|
|
|
|
fi
|
|
|
|
|
2011-04-13 11:57:26 +00:00
|
|
|
if [ "x`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`" = xbtrfs ]; then
|
|
|
|
rootsubvol="`make_system_path_relative_to_its_root /`"
|
|
|
|
rootsubvol="${rootsubvol#/}"
|
|
|
|
if [ "x${rootsubvol}" != x ]; then
|
|
|
|
GRUB_CMDLINE_LINUX="rootflags=subvol=${rootsubvol} ${GRUB_CMDLINE_LINUX}"
|
|
|
|
fi
|
|
|
|
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
|
2010-04-13 12:57:56 +00:00
|
|
|
title="$(gettext_quoted "%s, with Linux %s (recovery mode)")"
|
2009-11-16 20:19:42 +00:00
|
|
|
else
|
2010-04-13 12:57:56 +00:00
|
|
|
title="$(gettext_quoted "%s, with Linux %s")"
|
2009-11-16 20:19:42 +00:00
|
|
|
fi
|
2010-04-13 12:57:56 +00:00
|
|
|
printf "menuentry '${title}' ${CLASS} {\n" "${os}" "${version}"
|
2010-11-01 11:49:40 +00:00
|
|
|
if ! ${recovery} ; then
|
|
|
|
save_default_entry | sed -e "s/^/\t/"
|
|
|
|
fi
|
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-06-17 15:01:17 +00:00
|
|
|
cat << EOF
|
|
|
|
load_video
|
|
|
|
EOF
|
2011-03-30 18:42:42 +00:00
|
|
|
if grep -qx "CONFIG_FB_EFI=y" "${config}" 2> /dev/null \
|
|
|
|
&& grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" "${config}" 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
|
2010-11-01 11:36:00 +00:00
|
|
|
if [ "x$GRUB_GFXPAYLOAD_LINUX" != xtext ]; then
|
|
|
|
cat << EOF
|
|
|
|
load_video
|
|
|
|
EOF
|
|
|
|
fi
|
2010-02-10 18:53:13 +00:00
|
|
|
cat << EOF
|
|
|
|
set gfxpayload=$GRUB_GFXPAYLOAD_LINUX
|
2010-01-20 17:01:12 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2011-05-14 20:47:28 +00:00
|
|
|
cat << EOF
|
|
|
|
insmod gzio
|
|
|
|
EOF
|
|
|
|
|
2011-05-10 08:40:22 +00:00
|
|
|
if [ x$dirname = x/ ]; then
|
|
|
|
if [ -z "${prepare_root_cache}" ]; then
|
|
|
|
prepare_root_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/")"
|
|
|
|
fi
|
|
|
|
printf '%s\n' "${prepare_root_cache}"
|
|
|
|
else
|
|
|
|
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-10-26 16:28:04 +00:00
|
|
|
fi
|
2010-12-21 12:49:29 +00:00
|
|
|
message="$(gettext_printf "Loading Linux %s ..." ${version})"
|
2009-03-29 02:23:12 +00:00
|
|
|
cat << EOF
|
2010-12-21 12:49:29 +00:00
|
|
|
echo '$message'
|
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
|
2010-12-21 12:49:29 +00:00
|
|
|
message="$(gettext_printf "Loading initial ramdisk ...")"
|
2009-03-29 02:23:12 +00:00
|
|
|
cat << EOF
|
2010-12-21 12:49:29 +00:00
|
|
|
echo '$message'
|
2009-03-29 02:23:12 +00:00
|
|
|
initrd ${rel_dirname}/${initrd}
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
cat << EOF
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2011-03-29 17:47:34 +00:00
|
|
|
case x`uname -m` in
|
|
|
|
xi?86 | xx86_64)
|
2011-03-30 17:22:28 +00:00
|
|
|
list=`for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do
|
2011-03-29 17:47:34 +00:00
|
|
|
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
|
|
|
|
done` ;;
|
|
|
|
*)
|
2011-03-30 17:22:28 +00:00
|
|
|
list=`for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do
|
2011-03-29 17:47:34 +00:00
|
|
|
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
|
|
|
|
done` ;;
|
|
|
|
esac
|
|
|
|
|
2009-10-26 16:28:04 +00:00
|
|
|
prepare_boot_cache=
|
2011-05-10 08:40:22 +00:00
|
|
|
prepare_root_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=
|
2011-11-03 14:21:47 +00:00
|
|
|
for i in "initrd.img-${version}" "initrd-${version}.img" "initrd-${version}.gz" \
|
2010-06-26 19:31:40 +00:00
|
|
|
"initrd-${version}" "initramfs-${version}.img" \
|
|
|
|
"initrd.img-${alt_version}" "initrd-${alt_version}.img" \
|
2011-03-30 17:22:28 +00:00
|
|
|
"initrd-${alt_version}" "initramfs-${alt_version}.img" \
|
|
|
|
"initramfs-genkernel-${version}" \
|
|
|
|
"initramfs-genkernel-${alt_version}"; do
|
2007-12-29 20:53:20 +00:00
|
|
|
if test -e "${dirname}/${i}" ; then
|
|
|
|
initrd="$i"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2010-10-18 08:08:42 +00:00
|
|
|
|
2011-03-30 18:42:42 +00:00
|
|
|
config=
|
2011-03-30 18:53:23 +00:00
|
|
|
for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" "/etc/kernels/kernel-config-${version}" ; do
|
|
|
|
if test -e "${i}" ; then
|
|
|
|
config="${i}"
|
2010-10-18 08:08:42 +00:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-03-30 18:42:42 +00:00
|
|
|
initramfs=
|
|
|
|
if test -n "${config}" ; then
|
|
|
|
initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr -d \"`
|
|
|
|
fi
|
|
|
|
|
2007-12-29 20:53:20 +00:00
|
|
|
if test -n "${initrd}" ; then
|
|
|
|
echo "Found initrd image: ${dirname}/${initrd}" >&2
|
2010-10-18 08:08:42 +00:00
|
|
|
elif test -z "${initramfs}" ; then
|
|
|
|
# "UUID=" magic is parsed by initrd or initramfs. Since there's
|
|
|
|
# no initrd or builtin initramfs, it can't work here.
|
2008-06-26 07:03:26 +00:00
|
|
|
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}"
|
2010-10-12 12:47:04 +00:00
|
|
|
if [ "x${GRUB_DISABLE_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
|