Your message dated Thu, 13 Jan 2011 01:02:43 +0000
with message-id <[email protected]>
and subject line Bug#609590: fixed in grub2 1.99~20110112-1
has caused the Debian Bug report #609590,
regarding grub-common: 10_linux use /dev/root as device
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
609590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609590
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-common
Version: 1.99~20110106-1
Severity: normal
Hello,
Updating to experimental break boot, is use root=/dev/root which seems
to be unsuported by my kernel. Note that I do not use initramfs.
Previous version use root=/dev/sda2.
Regards.
-- System Information:
Debian Release: 6.0
APT prefers sid
APT policy: (500, 'sid'), (500, 'unstable'), (90, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.37+hati.1 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages grub-common depends on:
ii base-files 6.0 Debian base system miscellaneous f
ii dpkg 1.15.8.8 Debian package management system
ii gettext-base 0.18.1.1-3 GNU Internationalization utilities
ii install-info 4.13a.dfsg.1-6 Manage installed documentation in
ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib
ii libdevmapper1.02.1 2:1.02.48-4 The Linux Kernel Device Mapper use
ii libfreetype6 2.4.2-2.1 FreeType 2 font engine, shared lib
ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime
Versions of packages grub-common recommends:
pn os-prober <none> (no description available)
Versions of packages grub-common suggests:
pn grub-emu <none> (no description available)
pn multiboot-doc <none> (no description available)
ii xorriso 0.5.6.pl00-2 command line iso9660+RR manipulati
-- Configuration Files:
/etc/grub.d/10_linux changed:
set -e
prefix=/usr
exec_prefix=${prefix}
bindir=${exec_prefix}/bin
libdir=${exec_prefix}/lib
. ${libdir}/grub/grub-mkconfig_lib
export TEXTDOMAIN=grub
export TEXTDOMAINDIR=${prefix}/share/locale
CLASS="--class gnu-linux --class gnu --class os"
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
OS=GNU/Linux
else
OS="${GRUB_DISTRIBUTOR} GNU/Linux"
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr '[A-Z]' '[a-z]' | cut -d' '
-f1) ${CLASS}"
fi
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}" \
|| uses_abstraction "${GRUB_DEVICE}" 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_quoted "%s, with Linux %s (recovery mode)")"
else
title="$(gettext_quoted "%s, with Linux %s")"
fi
printf "menuentry '${title}' ${CLASS} {\n" "${os}" "${version}"
if ! ${recovery} ; then
save_default_entry | sed -e "s/^/\t/"
fi
# 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.
if [ "x$GRUB_GFXPAYLOAD_LINUX" != x ]; then
if [ "x$GRUB_GFXPAYLOAD_LINUX" != xtext ]; then
cat << EOF
load_video
EOF
fi
cat << EOF
set gfxpayload=$GRUB_GFXPAYLOAD_LINUX
EOF
fi
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}"
message="$(gettext_printf "Loading Linux %s ..." ${version})"
cat << EOF
echo '$message'
linux ${rel_dirname}/${basename}
root=${linux_root_device_thisversion} ro ${args}
EOF
if test -n "${initrd}" ; then
message="$(gettext_printf "Loading initial ramdisk ...")"
cat << EOF
echo '$message'
initrd ${rel_dirname}/${initrd}
EOF
fi
cat << EOF
}
EOF
}
list=`for i in /vmlinu[xz]-* $(find /boot -type f -regex '.*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}" "initramfs-${version}.img" \
"initrd.img-${alt_version}" "initrd-${alt_version}.img" \
"initrd-${alt_version}" "initramfs-${alt_version}.img"; do
if test -e "${dirname}/${i}" ; then
initrd="$i"
break
fi
done
initramfs=
for i in "config-${version}" "config-${alt_version}"; do
if test -e "${dirname}/${i}" ; then
initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${dirname}/${i}" | cut -f2 -d=
| tr -d \"`
break
fi
done
if test -n "${initrd}" ; then
echo "Found initrd image: ${dirname}/${initrd}" >&2
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.
linux_root_device_thisversion=${GRUB_DEVICE}
fi
linux_entry "${OS}" "${version}" false \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then
linux_entry "${OS}" "${version}" true \
"single ${GRUB_CMDLINE_LINUX}"
fi
list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '`
done
-- no debconf information
--
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x6A2540D1
pgp7HeV5UtUQ9.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 1.99~20110112-1
We believe that the bug you reported is fixed in the latest version of
grub2, which is due to be installed in the Debian FTP archive:
grub-common_1.99~20110112-1_i386.deb
to main/g/grub2/grub-common_1.99~20110112-1_i386.deb
grub-coreboot_1.99~20110112-1_i386.deb
to main/g/grub2/grub-coreboot_1.99~20110112-1_i386.deb
grub-efi-amd64_1.99~20110112-1_i386.deb
to main/g/grub2/grub-efi-amd64_1.99~20110112-1_i386.deb
grub-efi-ia32_1.99~20110112-1_i386.deb
to main/g/grub2/grub-efi-ia32_1.99~20110112-1_i386.deb
grub-efi_1.99~20110112-1_i386.deb
to main/g/grub2/grub-efi_1.99~20110112-1_i386.deb
grub-emu_1.99~20110112-1_i386.deb
to main/g/grub2/grub-emu_1.99~20110112-1_i386.deb
grub-firmware-qemu_1.99~20110112-1_i386.deb
to main/g/grub2/grub-firmware-qemu_1.99~20110112-1_i386.deb
grub-ieee1275_1.99~20110112-1_i386.deb
to main/g/grub2/grub-ieee1275_1.99~20110112-1_i386.deb
grub-linuxbios_1.99~20110112-1_i386.deb
to main/g/grub2/grub-linuxbios_1.99~20110112-1_i386.deb
grub-pc_1.99~20110112-1_i386.deb
to main/g/grub2/grub-pc_1.99~20110112-1_i386.deb
grub-rescue-pc_1.99~20110112-1_i386.deb
to main/g/grub2/grub-rescue-pc_1.99~20110112-1_i386.deb
grub2_1.99~20110112-1.diff.gz
to main/g/grub2/grub2_1.99~20110112-1.diff.gz
grub2_1.99~20110112-1.dsc
to main/g/grub2/grub2_1.99~20110112-1.dsc
grub2_1.99~20110112-1_i386.deb
to main/g/grub2/grub2_1.99~20110112-1_i386.deb
grub2_1.99~20110112.orig.tar.gz
to main/g/grub2/grub2_1.99~20110112.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Colin Watson <[email protected]> (supplier of updated grub2 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Thu, 13 Jan 2011 00:12:41 +0000
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub-emu grub-pc
grub-rescue-pc grub-coreboot grub-efi-ia32 grub-efi-amd64 grub-ieee1275
grub-firmware-qemu grub-yeeloong
Architecture: source i386
Version: 1.99~20110112-1
Distribution: experimental
Urgency: low
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description:
grub-common - GRand Unified Bootloader, version 2 (common files)
grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
grub-efi - GRand Unified Bootloader, version 2 (dummy package)
grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
grub-emu - GRand Unified Bootloader, version 2 (emulated version)
grub-firmware-qemu - GRUB firmware image for QEMU
grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
grub-pc - GRand Unified Bootloader, version 2 (PC/BIOS version)
grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
grub2 - GRand Unified Bootloader, version 2 (dummy package)
Closes: 560823 609590 609814 609818
Changes:
grub2 (1.99~20110112-1) experimental; urgency=low
.
* New Bazaar snapshot.
- Disable ieee1275_fb on sparc (closes: #560823).
- Fix pf2 font generation on big-endian platforms (closes: #609818).
* branch_butter.patch: Resolve the device returned by
grub_find_root_device_from_mountinfo or find_root_device_from_libzfs
using grub_find_device (closes: #609590, #609814, LP: #700147).
Checksums-Sha1:
d54593d6ea6398853ab298a865a169613967ae2f 2877 grub2_1.99~20110112-1.dsc
863cb8bd8d14d29d24156731ea43afefe80f2662 2434336
grub2_1.99~20110112.orig.tar.gz
d49e07ad7eb4cb8e1db7711a3f558c9649886326 577426 grub2_1.99~20110112-1.diff.gz
a621105f01c0733a9e7f89b91edf5f178682f4a0 327600 grub2_1.99~20110112-1_i386.deb
2e87fdc4d20be6a934f943cbc840ff8da2b0e275 326110
grub-linuxbios_1.99~20110112-1_i386.deb
767ac07580642aa7dbaf27bcc9eb897c7b1a5783 326108
grub-efi_1.99~20110112-1_i386.deb
a860098f821bbd5abc3f8a53b969719f7aac8396 2218474
grub-common_1.99~20110112-1_i386.deb
5a350a630b4089c183847a43bb9cd527fbbc37af 3313640
grub-emu_1.99~20110112-1_i386.deb
beba6cdadf8d02084ceed15663825a1153d9f9dd 1174110
grub-pc_1.99~20110112-1_i386.deb
29e389c64c26657d84bfcf35685dd171e31f3fc0 1553888
grub-rescue-pc_1.99~20110112-1_i386.deb
67ea488c2d6ac538b964b04fc89acc79194c639f 932912
grub-coreboot_1.99~20110112-1_i386.deb
9b2a642bd242d24b2d4ce9d1ac0e01546ad77f22 947952
grub-efi-ia32_1.99~20110112-1_i386.deb
8af4b4ea99c3138bd2acabe8965022123b40f5c1 1037850
grub-efi-amd64_1.99~20110112-1_i386.deb
1329d53ddc95dda754d51653d5f8ccec8bb200c5 929936
grub-ieee1275_1.99~20110112-1_i386.deb
17a8fa7ae133fb115ec07de39122fdec9e36c619 846528
grub-firmware-qemu_1.99~20110112-1_i386.deb
Checksums-Sha256:
43af40011a2c1885f71d1d906d4cee38cbb801a88dccf4e45abd24696f871684 2877
grub2_1.99~20110112-1.dsc
00989ce697604471fccd0364e5758533dacfb6fdbd329f325f100c3526ee3dd9 2434336
grub2_1.99~20110112.orig.tar.gz
a499f2ec31a71efceeb97c4d17eb7b304d0e6688000d3622aa31922fe483a5f1 577426
grub2_1.99~20110112-1.diff.gz
9f95984f17c00b30f0f4533ba7fe76646fb27f1e0c2b9368cc5a92e7a1b80933 327600
grub2_1.99~20110112-1_i386.deb
8b547722f7cca4110b40531ed21439385e7bdaa583f1d3f7fd2b74acd87f49c5 326110
grub-linuxbios_1.99~20110112-1_i386.deb
980349ab71feeb03bdcd3ad3d3493596a088788d4088e67a148e90e00bc63e67 326108
grub-efi_1.99~20110112-1_i386.deb
28a9b2749713afbeb292b921945084e5d7b41cb57694818e587ea6d4e9a92ad7 2218474
grub-common_1.99~20110112-1_i386.deb
b82a28036d886a978938d68a407a8d6d7fe65b53c7b54a17fb3db6c34a1ab3a5 3313640
grub-emu_1.99~20110112-1_i386.deb
98bf9a7467739981e7fcf46cfe3fd7746d05550ae2175e65c8c692f822a2324c 1174110
grub-pc_1.99~20110112-1_i386.deb
0e5f53c8e5a2bd947f2b3219b08c706d5237961ab85b8989e89118e452cf6111 1553888
grub-rescue-pc_1.99~20110112-1_i386.deb
0a98100813b52e4cb0ed00c2a547c6a4a30df103dce9f1187b5ecea0ca399781 932912
grub-coreboot_1.99~20110112-1_i386.deb
3202e48c6a58d62499f2b456bb888290b9fe200e4ae833716e173772ed762ca5 947952
grub-efi-ia32_1.99~20110112-1_i386.deb
c3f2002c32e868a771b6413fed4b4a8d48ae380ff123adebf3a0cfd1e332e667 1037850
grub-efi-amd64_1.99~20110112-1_i386.deb
b3ef743202e43e50ce4286ba3a89d1eaf3d49a9f3c0d5070fc22aa38967e560c 929936
grub-ieee1275_1.99~20110112-1_i386.deb
6461dba747defbf86b2ff634aa3c067dbab6d43e015f4cc7fbe3c851966cd9e9 846528
grub-firmware-qemu_1.99~20110112-1_i386.deb
Files:
94f3b0502f76492fdf8d9c6cd3d21377 2877 admin extra grub2_1.99~20110112-1.dsc
a13060d8535e872d6eb1fe03539ef149 2434336 admin extra
grub2_1.99~20110112.orig.tar.gz
3435f2f1b728e1b08faeb791815b7fc0 577426 admin extra
grub2_1.99~20110112-1.diff.gz
9a8da8aab24b22988e79155977c337b0 327600 admin extra
grub2_1.99~20110112-1_i386.deb
506c77fec31c5ed5c685c9071c6be10c 326110 admin extra
grub-linuxbios_1.99~20110112-1_i386.deb
1b978b7152869cc7d89400aadbe204f1 326108 admin extra
grub-efi_1.99~20110112-1_i386.deb
e7c7ab8b596d967d3c13a653e9ee5e24 2218474 admin optional
grub-common_1.99~20110112-1_i386.deb
5876bb7c85c72b5a4703541b686f3da2 3313640 admin extra
grub-emu_1.99~20110112-1_i386.deb
37c2d6e99d6ca8e84d0c5cf78efee9aa 1174110 admin optional
grub-pc_1.99~20110112-1_i386.deb
276c38152c6d53300a2addf1b44e1f97 1553888 admin extra
grub-rescue-pc_1.99~20110112-1_i386.deb
20ae601193a7f3620f34eaade167a012 932912 admin extra
grub-coreboot_1.99~20110112-1_i386.deb
40eed851680b122aeea2f1024e3d6a3d 947952 admin extra
grub-efi-ia32_1.99~20110112-1_i386.deb
b9b393991c424a9f1d1e45e132328721 1037850 admin extra
grub-efi-amd64_1.99~20110112-1_i386.deb
20f77528e170fa4f7ed75167013283ee 929936 admin extra
grub-ieee1275_1.99~20110112-1_i386.deb
70704d6be52c35fa4a4042fd64735ab3 846528 admin extra
grub-firmware-qemu_1.99~20110112-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson <[email protected]> -- Debian developer
iQIVAwUBTS5LhDk1h9l9hlALAQhszg//ck7KumCC3cVQLDU4V1kv8prf2880e6nq
jkNmCVie+xprYLhYv5bTQqctMJsl7MczWG3VW4VNo0wNGrzAb5MJpuLjWX+f1e8I
KNQS0P+rVwU/Y/JpT97YEmbKIZKvUrl8FklW7hdhmduy+3FPR1ztbAvh2QBPM9id
UJSj4uQcIjDnSlFmrpzQLbU61LP81KZgTSolDezwxj766vS5VDJn19LWoawD9k69
/OXAP59FtpPquGcvI/6u04W5QySrfZObUWPx2GTs1Dw9O9AN1aUjA+fOr3F7LISi
Fqmm8lcMCNnKyGQSn84Zq5iGwNB/hiR2TcglW8efVhsqwv+QP5V+SYaCzJubXfCJ
Vp1Ul1sziDBUGO4mO+fxoWer3jNgkjEuOuEaI4dpOQVxRWhDMmCIiyv3/qO527PN
Lnh+ecl7Qf4S+zEq9Zp/1xlledMiPu8WOeQPJhiDmrT0iv1MG372+HfKvXra9Rcv
qPk1Ze7Cx+5fN7xymPy0QZu/s8JYSzpdsAgfZBQnzVwEh4pvG9Ty5+kCdAMzfnXZ
Y3rTygxbxm7fCfELoP6QunQD27WyFvK+Y4sKNE8RTACOt/+W35G1oOz46Rnwt9mO
DxcdXaD9Kt2g57+vajBuWj7irIoOCshDq9aQXkH3r1up6QzTI9vFNuC/CVgVU7dp
XWz36pF+UrM=
=1QsN
-----END PGP SIGNATURE-----
--- End Message ---