Your message dated Wed, 16 Jun 2010 17:32:46 +0000
with message-id <e1oowtm-0005cz...@ries.debian.org>
and subject line Bug#586056: fixed in grub2 1.98+20100614-2
has caused the Debian Bug report #586056,
regarding grub-pc: update-grub fails with "Invalid parameter"
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 ow...@bugs.debian.org
immediately.)
--
586056: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586056
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: grub-pc
Version: 1.98+20100614-1
Severity: grave
Justification: renders package unusable
The latest grub introduces a change to the argument processing for
grub-mkconfig. Now, rather than ignoring unknown arguments, it produces
an error.
This is a problem because the kernel image postinst script invokes the
postinst_hook (defined in /etc/kernel-img.conf to be update-grub, a
wrapper for grub-mkconfig) with arguments that appear to be the kernel
version and path. These arguments were previously ignored, but now
produce an error.
Because of this, kernel image configuration will always fail. Here's an
example (yes this is a sidux kernel, but I don't think the postinst is
significantly different in this regard):
$ sudo dpkg --configure -a -D3
Setting up linux-image-2.6.34-0.slh.9-sidux-686 (2.6.34-10) ...
D000002: fork/exec
/var/lib/dpkg/info/linux-image-2.6.34-0.slh.9-sidux-686.postinst ( configure )
Running depmod.
Running update-initramfs.
update-initramfs: Generating /boot/initrd.img-2.6.34-0.slh.9-sidux-686
initrd.img(/boot/initrd.img-2.6.34-0.slh.9-sidux-686
) points to /boot/initrd.img-2.6.34-0.slh.9-sidux-686
(/boot/initrd.img-2.6.34-0.slh.9-sidux-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.34-0.slh.9-sidux-686.postinst line 400.
vmlinuz(/boot/vmlinuz-2.6.34-0.slh.9-sidux-686
) points to /boot/vmlinuz-2.6.34-0.slh.9-sidux-686
(/boot/vmlinuz-2.6.34-0.slh.9-sidux-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.34-0.slh.9-sidux-686.postinst line 400.
Running /usr/sbin/update-grub.
Invalid parameter, 2.6.34-0.slh.9-sidux-686
User postinst hook script [/usr/sbin/update-grub] exited with value 1
dpkg: error processing linux-image-2.6.34-0.slh.9-sidux-686 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of linux-image-2.6-sidux-686:
linux-image-2.6-sidux-686 depends on linux-image-2.6.34-0.slh.9-sidux-686 (=
2.6.34-10); however:
Package linux-image-2.6.34-0.slh.9-sidux-686 is not configured yet.
dpkg: error processing linux-image-2.6-sidux-686 (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
linux-image-2.6.34-0.slh.9-sidux-686
linux-image-2.6-sidux-686
A simple way to fix this is to remove the "$@" in
/usr/sbin/update-grub. Making this change allowed me to configure the
kernel packages.
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/20dc7d4f-4200-40bc-9518-fdcc28953091 / ext3
rw,noatime,errors=remount-ro,data=writeback 0 0
*********************** END /proc/mounts
*********************** BEGIN /boot/grub/device.map
(hd0) /dev/sda
*********************** END /boot/grub/device.map
*********************** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
fi
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
insmod png
if background_image /boot/grub/moreblue-orbit-grub.png ; then
set color_normal=black/black
set color_highlight=magenta/black
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.9-sidux-686' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.9-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.9-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro vga=791 quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.9-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.9-sidux-686 (recovery
mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.9-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.9-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro single vga=791
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.9-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.8-sidux-686' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.8-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.8-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro vga=791 quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.8-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.8-sidux-686 (recovery
mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.8-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.8-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro single vga=791
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.8-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.7-sidux-686' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.7-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.7-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro vga=791 quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.7-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.7-sidux-686 (recovery
mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.7-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.7-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro single vga=791
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.7-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.5-sidux-686' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.5-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.5-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro vga=791 quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.5-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.34-0.slh.5-sidux-686 (recovery
mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.34-0.slh.5-sidux-686 ...'
linux /boot/vmlinuz-2.6.34-0.slh.5-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro single vga=791
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.34-0.slh.5-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-2.slh.4-sidux-686' --class
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.32-2.slh.4-sidux-686 ...'
linux /boot/vmlinuz-2.6.32-2.slh.4-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro vga=791 quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-2.slh.4-sidux-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-2.slh.4-sidux-686 (recovery
mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
echo 'Loading Linux 2.6.32-2.slh.4-sidux-686 ...'
linux /boot/vmlinuz-2.6.32-2.slh.4-sidux-686
root=UUID=20dc7d4f-4200-40bc-9518-fdcc28953091 ro single vga=791
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-2.slh.4-sidux-686
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
multiboot /boot/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 20dc7d4f-4200-40bc-9518-fdcc28953091
multiboot /boot/memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.34-0.slh.5-sidux-686 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages grub-pc depends on:
ii debconf [debconf-2.0] 1.5.32 Debian configuration management sy
ii grub-common 1.98+20100614-1 GRand Unified Bootloader, version
ii libc6 2.11.2-1 Embedded GNU C Library: Shared lib
ii libdevmapper1.02.1 2:1.02.48-1 The Linux Kernel Device Mapper use
ii ucf 3.0025 Update Configuration File: preserv
grub-pc recommends no packages.
Versions of packages grub-pc suggests:
ii desktop-base 5.0.5 common files for the Debian Deskto
-- debconf information:
grub2/kfreebsd_cmdline:
* grub2/linux_cmdline: vga=791
grub-pc/chainload_from_menu.lst: true
grub-pc/kopt_extracted: false
* grub-pc/install_devices: /dev/sda
grub-pc/postrm_purge_boot_grub: false
grub2/kfreebsd_cmdline_default: quiet
grub2/linux_cmdline_default: quiet
--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 1.98+20100614-2
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.98+20100614-2_i386.deb
to main/g/grub2/grub-common_1.98+20100614-2_i386.deb
grub-coreboot_1.98+20100614-2_i386.deb
to main/g/grub2/grub-coreboot_1.98+20100614-2_i386.deb
grub-efi-amd64_1.98+20100614-2_i386.deb
to main/g/grub2/grub-efi-amd64_1.98+20100614-2_i386.deb
grub-efi-ia32_1.98+20100614-2_i386.deb
to main/g/grub2/grub-efi-ia32_1.98+20100614-2_i386.deb
grub-efi_1.98+20100614-2_i386.deb
to main/g/grub2/grub-efi_1.98+20100614-2_i386.deb
grub-emu_1.98+20100614-2_i386.deb
to main/g/grub2/grub-emu_1.98+20100614-2_i386.deb
grub-firmware-qemu_1.98+20100614-2_i386.deb
to main/g/grub2/grub-firmware-qemu_1.98+20100614-2_i386.deb
grub-ieee1275_1.98+20100614-2_i386.deb
to main/g/grub2/grub-ieee1275_1.98+20100614-2_i386.deb
grub-linuxbios_1.98+20100614-2_i386.deb
to main/g/grub2/grub-linuxbios_1.98+20100614-2_i386.deb
grub-pc_1.98+20100614-2_i386.deb
to main/g/grub2/grub-pc_1.98+20100614-2_i386.deb
grub-rescue-pc_1.98+20100614-2_i386.deb
to main/g/grub2/grub-rescue-pc_1.98+20100614-2_i386.deb
grub2_1.98+20100614-2.diff.gz
to main/g/grub2/grub2_1.98+20100614-2.diff.gz
grub2_1.98+20100614-2.dsc
to main/g/grub2/grub2_1.98+20100614-2.dsc
grub2_1.98+20100614-2_i386.deb
to main/g/grub2/grub2_1.98+20100614-2_i386.deb
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 586...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Colin Watson <cjwat...@debian.org> (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 ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 16 Jun 2010 17:58:48 +0100
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.98+20100614-2
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers <pkg-grub-de...@lists.alioth.debian.org>
Changed-By: Colin Watson <cjwat...@debian.org>
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: 586056
Changes:
grub2 (1.98+20100614-2) unstable; urgency=low
.
* Build-depend on gcc-4.4-multilib on i386 and kopensolaris-i386 too, in
order to build grub-efi-amd64.
* Ignore non-option arguments in grub-mkconfig (closes: #586056).
Checksums-Sha1:
7a6ac4270ff2671ec0244f0771ca242cca79d4f2 2822 grub2_1.98+20100614-2.dsc
a7e8631dfd35b5388f0cc50c15a2eaa74291b684 395397 grub2_1.98+20100614-2.diff.gz
d83dc6bee4d49f769243435b955d31e9390ce7b4 262738 grub2_1.98+20100614-2_i386.deb
288eaec2cd25953982d66eccc50c23cf29f726cc 261484
grub-linuxbios_1.98+20100614-2_i386.deb
4385588d4c0346f3e660421b60e0eff1fc250485 261484
grub-efi_1.98+20100614-2_i386.deb
d69cc6a9309f14b2497fececf06384199aebcf6f 1619462
grub-common_1.98+20100614-2_i386.deb
9b9b53d8be3fea91edc4c57ab5a4350cd3b339b1 2602098
grub-emu_1.98+20100614-2_i386.deb
a21a0f51eb03a483ca7868278b87397cd4cd04b2 912892
grub-pc_1.98+20100614-2_i386.deb
9983a091c57b39e7a861142b357702389c9b30cf 1404790
grub-rescue-pc_1.98+20100614-2_i386.deb
15c9f2f84886ba48dd2822bc24eba01cecff4809 715808
grub-coreboot_1.98+20100614-2_i386.deb
6567063bc8d3b46f2fd13a01b9e2ed05e2154415 750932
grub-efi-ia32_1.98+20100614-2_i386.deb
8eea8351351f7b4527787007861283644ed95c83 825600
grub-efi-amd64_1.98+20100614-2_i386.deb
0a7919ad5885309185db2e31c05bcf8237b6b9af 709754
grub-ieee1275_1.98+20100614-2_i386.deb
90f61cd09e48d83eb0bade76fee9e4a463ad913f 664510
grub-firmware-qemu_1.98+20100614-2_i386.deb
Checksums-Sha256:
5b4cb6d6e7cb68d79083140098682e4a2562896517943d8d08e64eae2ecb9b91 2822
grub2_1.98+20100614-2.dsc
b39837e53c4a1193cabb017a405d29a46bb82ebfc113c668cdc7ff6e066eff2c 395397
grub2_1.98+20100614-2.diff.gz
b3877471927b974d05317454c21d72decfc49635474e0613adfde30c3f389815 262738
grub2_1.98+20100614-2_i386.deb
7317464d2b3596a1951242de218401fb856947dfae1fe86c0896eda272bcabec 261484
grub-linuxbios_1.98+20100614-2_i386.deb
28c14c5cce69e663aa4d4a1a5b3e8544cdc14906579646d8e236763ff5d8fadd 261484
grub-efi_1.98+20100614-2_i386.deb
16a287282611d39800cf85b817711559c383d6ea07a9f4572e54fe321d68e83e 1619462
grub-common_1.98+20100614-2_i386.deb
4108267f5240571828d9e206cf5204ef49db549784c41c1ef42a240b2887412d 2602098
grub-emu_1.98+20100614-2_i386.deb
ba87e908cba68f089a772f78ba1ecd14086c28f173077d075c7e8d4bb1e5821d 912892
grub-pc_1.98+20100614-2_i386.deb
beed12d8a7455c9ba90696fabe2e38eedbf8cb20ba84efd749fb1de61f765b83 1404790
grub-rescue-pc_1.98+20100614-2_i386.deb
634cc4cfa03b7c1dbc8a43f80b3c84ae10afcc861a11c57d6ac4640f8734ce19 715808
grub-coreboot_1.98+20100614-2_i386.deb
8733f8ae993fd93528835a131def3c08b7767fea953a66b7e483d78ece59f253 750932
grub-efi-ia32_1.98+20100614-2_i386.deb
94d0d05c38d3ca99b8e8a17a2d4f3c24b41d73e23d0618c81a2644e9db1f052c 825600
grub-efi-amd64_1.98+20100614-2_i386.deb
f93415cacfa25430e58d9d317d7563e3010ed0420cfc9d029fcb93d9351b3f00 709754
grub-ieee1275_1.98+20100614-2_i386.deb
ddd6edd8ea31edd695d66b3180a83b3e42c3b87772928adc5d3d04e863df2ac0 664510
grub-firmware-qemu_1.98+20100614-2_i386.deb
Files:
6ae38cd87e15539c3c48f67571461ab2 2822 admin extra grub2_1.98+20100614-2.dsc
1a83aa5ccf872e9428bcae96cc85b193 395397 admin extra
grub2_1.98+20100614-2.diff.gz
ddd9b0c9d1ff544e8a371a909411fa94 262738 admin extra
grub2_1.98+20100614-2_i386.deb
874491eadc9dbbf28f1cc62d9d8b0ad9 261484 admin extra
grub-linuxbios_1.98+20100614-2_i386.deb
510b12ce0fbbace73f6c3961ca5f7865 261484 admin extra
grub-efi_1.98+20100614-2_i386.deb
675238fd4d6a0c75e826bc3b6c5ae2e1 1619462 admin extra
grub-common_1.98+20100614-2_i386.deb
f71f5fd4f90129ab4c2d784abb7b47b9 2602098 admin extra
grub-emu_1.98+20100614-2_i386.deb
2a93a9d33cfd8bdbbdd15601ff7e9a4a 912892 admin extra
grub-pc_1.98+20100614-2_i386.deb
d9d8919d53da74b6722f09ff960c593a 1404790 admin extra
grub-rescue-pc_1.98+20100614-2_i386.deb
254d3af7485137601d42ad4510a793e5 715808 admin extra
grub-coreboot_1.98+20100614-2_i386.deb
4794bfa4956ba0237feed80a1cef98f8 750932 admin extra
grub-efi-ia32_1.98+20100614-2_i386.deb
1505d9497c0cd574b81bb622c201c93b 825600 admin extra
grub-efi-amd64_1.98+20100614-2_i386.deb
22d08a200b75cbee87e5b1c07517191b 709754 admin extra
grub-ieee1275_1.98+20100614-2_i386.deb
e7324fe98bc88b09c15d70522e11364a 664510 admin extra
grub-firmware-qemu_1.98+20100614-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson <cjwat...@debian.org> -- Debian developer
iQIVAwUBTBkHHTk1h9l9hlALAQjqyRAAiRf7DNdudrOAwc94T8et7TpItbQVzWe8
tv4E4TtkmzS7bsh6GrN8E6M1wWxQcv6M0p0Wji3vUzyCP0x3Y3p86mzjhmazE4Q7
A3A8HMrcY4/b7g2BO/8jKnh8K4+k8pBhdq0Lghs3t4Us5YXb3n7MOi5n8vKoEVPq
wtSoZkwbyQvXiA8vLlE/xNdJ94w9cjAm2yhWibMmcpkAXOuvRdxFJ6lydPpZB+P4
NOez0a5ddmH/+o9uTsVq3kcn8AiJfO3Kk7Fa2fgU6rPGzYmXpndlIAgtqIEg293c
PeaHlfFhMsUBMHj8WYyw7BzD7SegF0nrKipT6yuEfLd2z2P9QSwst8c5NE2yKQDP
UCPJx0/KVsxg+lVT6y9dWtm8HjiUXaeYIWsE+Fw83FLbkL8+ijObRAXyVpAbQEZd
9J4NNkYbnf7r6q45SRgdljV5DV9yxtohSVf+YeE59Lelo8By5CIlLDASMsms4xTV
+d5Z5eAeoae8ZW2xP6HQkg61dA7FK0XLu+7tD2OeuSveSmg/7RB1jbyM57km6Oew
ghxPl/G6aiMQCFaWK5RusljhWHszAdmwSv/+xas2MsPuOhDRVa7tdC2OvHzAo5qw
BQFSSMjwoxuN9nZUxWyuEL4Wfb+2GeBmUFmk677UYkx7FfyG85KXW6NaGxpn+xBQ
EgjigS+E2hg=
=qULJ
-----END PGP SIGNATURE-----
--- End Message ---