# apt-cache policy grub-pc
grub-pc:
Installé : 1.98~20100101-1
Candidat : 1.98~20100110-1
Table de version :
1.98~20100110-1 0
500 http://ftp.fr.debian.org sid/main Packages
*** 1.98~20100101-1 0
100 /var/lib/dpkg/status
1.96+20080724-16 0
500 http://ftp.fr.debian.org lenny/main Packages
[code]~# cat /etc/grub.d/10_linux
[…]
prefix=/usr
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
libdir=${exec_prefix}/lib
. ${libdir}/grub/grub-mkconfig_lib
. ${bindir}/gettext.sh
export TEXTDOMAIN=grub
export TEXTDOMAINDIR=${prefix}/share/locale
if [ “x${GRUB_DISTRIBUTOR}” = “x” ] ; then
OS=GNU/Linux
else
OS="${GRUB_DISTRIBUTOR} GNU/Linux"
fi
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}” \
|| [ “grub-probe -t abstraction --device ${GRUB_DEVICE} | sed -e 's,.*\(lvm\).*,\1,'
” = “lvm” ] ; then
LINUX_ROOT_DEVICE=${GRUB_DEVICE}
else
LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
fi
linux_entry ()
{
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
printf “menuentry “${title}” {\n” “${os}” "${version}“
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}"
cat << EOF
echo $(printf “$(gettext “Loading Linux %s …”)” ${version})
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
EOF
if test -n “${initrd}” ; then
cat << EOF
echo $(gettext “Loading initial ramdisk …”)
initrd ${rel_dirname}/${initrd}
EOF
fi
cat << EOF
}
EOF
}
list=for i in /boot/vmlinu[xz]-* /vmlinu[xz]-* ; do if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi done
prepare_boot_cache=
while [ “x$list” != “x” ] ; do
linux=version_find_latest $list
echo “Found linux image: $linux” >&2
basename=basename $linux
dirname=dirname $linux
rel_dirname=make_system_path_relative_to_its_root $dirname
version=echo $basename | sed -e "s,^[^0-9]*-,,g"
alt_version=echo $version | sed -e "s,\.old$,,g"
linux_root_device_thisversion="${LINUX_ROOT_DEVICE}"
initrd=
for i in “initrd.img-${version}” “initrd-${version}.img”
“initrd-${version}” “initrd.img-${alt_version}”
“initrd-${alt_version}.img” “initrd-${alt_version}”; do
if test -e “${dirname}/${i}” ; then
initrd="$i"
break
fi
done
if test -n “${initrd}” ; then
echo “Found initrd image: ${dirname}/${initrd}” >&2
else
# “UUID=” magic is parsed by initrds. Since there’s no initrd, it can’t work here.
linux_root_device_thisversion=${GRUB_DEVICE}
fi
linux_entry “${OS}” “${version}” false
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
if [ “x${GRUB_DISABLE_LINUX_RECOVERY}” != “xtrue” ]; then
linux_entry “${OS}” “${version}” true
"single ${GRUB_CMDLINE_LINUX}"
fi
list=echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '
done[/code]
Le mien chez moi (SID amd64) !
Désolé pour la longueur…