Bug#726916: grub-pc: grub is very slow and no welcome to grub is shown

Anders Lagerås streamdredger at gmail.com
Sun Oct 20 14:36:56 UTC 2013


Package: grub-pc
Version: 2.00-19
Severity: important

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Dear Maintainer,
Grub is very slow, it takes like 10 minutes of waiting until the kernel is being loaded.
Before that no welcome to grub is shown and no boot menu, the screen is just black.

- -- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd / reiserfs rw,noatime,notail 0 0
/dev/sda8 /home reiserfs rw,nodev,noatime,notail 0 0
/dev/sda6 /tmp reiserfs rw,nodev,noatime 0 0
/dev/sda7 /usr reiserfs rw,nodev,noatime,notail 0 0
/dev/sda5 /var reiserfs rw,nodev,noatime,notail 0 0
/dev/sdb7 /mnt/part1 xfs rw,nodev,noexec,noatime,inode64,noquota 0 0
/dev/sdb8 /mnt/part2 xfs rw,nodev,noexec,noatime,inode64,noquota 0 0
/dev/sdb9 /mnt/part3 reiserfs rw,nodev,noatime,notail 0 0
/dev/sdc1 /mnt/c fuseblk rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0
/dev/sdc7 /mnt/d fuseblk rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0
/dev/sdc8 /mnt/e fuseblk rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0
*********************** END /proc/mounts

*********************** 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 [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

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
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

terminal_input console
terminal_output console
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
	load_video
	insmod gzio
	insmod part_msdos
	insmod reiserfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
	else
	  search --no-floppy --fs-uuid --set=root e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
	fi
	echo	'Loading Linux 3.11-1-amd64 ...'
	linux	/boot/vmlinuz-3.11-1-amd64 root=UUID=e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd ro  
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initrd.img-3.11-1-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
	menuentry 'Debian GNU/Linux, with Linux 3.11-1-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11-1-amd64-advanced-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod reiserfs
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		else
		  search --no-floppy --fs-uuid --set=root e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		fi
		echo	'Loading Linux 3.11-1-amd64 ...'
		linux	/boot/vmlinuz-3.11-1-amd64 root=UUID=e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd ro  
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.11-1-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.11-1-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11-1-amd64-recovery-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod reiserfs
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		else
		  search --no-floppy --fs-uuid --set=root e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		fi
		echo	'Loading Linux 3.11-1-amd64 ...'
		linux	/boot/vmlinuz-3.11-1-amd64 root=UUID=e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.11-1-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.10-3-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10-3-amd64-advanced-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod reiserfs
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		else
		  search --no-floppy --fs-uuid --set=root e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		fi
		echo	'Loading Linux 3.10-3-amd64 ...'
		linux	/boot/vmlinuz-3.10-3-amd64 root=UUID=e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd ro  
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.10-3-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.10-3-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10-3-amd64-recovery-e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod reiserfs
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		else
		  search --no-floppy --fs-uuid --set=root e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd
		fi
		echo	'Loading Linux 3.10-3-amd64 ...'
		linux	/boot/vmlinuz-3.10-3-amd64 root=UUID=e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.10-3-amd64
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Microsoft Windows XP Professional (on /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-B0783D7A783D4100' {
	insmod part_msdos
	insmod ntfs
	set root='hd2,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1  B0783D7A783D4100
	else
	  search --no-floppy --fs-uuid --set=root B0783D7A783D4100
	fi
	drivemap -s (hd0) ${root}
	chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### 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  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg

*********************** BEGIN /proc/mdstat
cat: /proc/mdstat: No such file or directory
*********************** END /proc/mdstat

*********************** BEGIN LVM
*********************** END LVM

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Oct 20 16:25 ata-TSSTcorp_CDDVDW_SH-S203B -> ../../sr0
lrwxrwxrwx 1 root root  9 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404 -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part7 -> ../../sdc7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1500ADFD-00NLR4_WD-WMAP41620404-part8 -> ../../sdc8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part7 -> ../../sda7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539-part8 -> ../../sda8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622 -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part6 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part7 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part8 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ata-WDC_WD5000AAKS-22TMA0_WD-WCAPW3192622-part9 -> ../../sdb9
lrwxrwxrwx 1 root root  9 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404 -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part7 -> ../../sdc7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1500ADFD-0_WD-WMAP41620404-part8 -> ../../sdc8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part7 -> ../../sda7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD1600AAJS-0_WD-WMAV3E398539-part8 -> ../../sda8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622 -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part6 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part7 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part8 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 scsi-SATA_WDC_WD5000AAKS-2_WD-WCAPW3192622-part9 -> ../../sdb9
lrwxrwxrwx 1 root root  9 Oct 20 16:25 wwn-0x50014ee0aaca632d -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part7 -> ../../sdc7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aaca632d-part8 -> ../../sdc8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 wwn-0x50014ee0aced9af0 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part7 -> ../../sda7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee0aced9af0-part8 -> ../../sda8
lrwxrwxrwx 1 root root  9 Oct 20 16:25 wwn-0x50014ee10032e11a -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part6 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part7 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part8 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 wwn-0x50014ee10032e11a-part9 -> ../../sdb9
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Oct 20 16:25 0fa587c2-f49c-4c01-9bbb-174c1046e060 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 33f73e77-de5d-4157-bd7f-767ca2b9c1c5 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 4209ff03-04eb-4d22-8359-8cee6e63d646 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 4275d7c6-fe90-4961-8164-0d412bb0a723 -> ../../sda8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 5CA03ADBA03ABB7A -> ../../sdc7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 5bf7e3f9-5e06-4bbf-b7e9-750e5685fc7a -> ../../sdc6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 6A9849D99849A483 -> ../../sdc8
lrwxrwxrwx 1 root root 10 Oct 20 16:25 75cbc464-e73f-4efd-891d-579e8d9aa224 -> ../../sda6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 B0783D7A783D4100 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 a4cafcc9-6c07-4e5f-bcfa-3fdd5f19a826 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Oct 20 16:25 bbf72dce-b6cb-43cb-8ea5-82d8158c1266 -> ../../sda7
lrwxrwxrwx 1 root root 10 Oct 20 16:25 dadd2613-866a-49ae-bf4c-02df17924b35 -> ../../sdb9
lrwxrwxrwx 1 root root 10 Oct 20 16:25 e1d15f24-54a7-4fdf-b89d-7a6511cbb7cd -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 20 16:25 ef4e56d5-18a2-4044-920a-5ae2bc78cfb7 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Oct 20 16:25 f58b0ff6-1a43-40be-a3b9-f1ebeb6ac6ac -> ../../sda5
*********************** END /dev/disk/by-uuid

- -- System Information:
Debian Release: jessie/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.11-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.51
ii  grub-common            2.00-19
ii  grub-pc-bin            2.00-19
ii  grub2-common           2.00-19
ii  ucf                    3.0027+nmu1

grub-pc recommends no packages.

grub-pc suggests no packages.

- -- debconf information:
* grub2/linux_cmdline_default:
  grub-pc/mixed_legacy_and_grub2: true
  grub-pc/chainload_from_menu.lst: true
  grub-pc/install_devices_failed: false
  grub-pc/partition_description:
* grub-pc/install_devices: /dev/disk/by-id/ata-WDC_WD1600AAJS-00L7A0_WD-WMAV3E398539
  grub-pc/install_devices_failed_upgrade: true
  grub-pc/disk_description:
* grub-pc/postrm_purge_boot_grub: true
  grub-pc/kopt_extracted: false
  grub2/kfreebsd_cmdline:
  grub2/kfreebsd_cmdline_default: quiet
* grub2/linux_cmdline:
  grub-pc/install_devices_empty: false
  grub2/device_map_regenerated:
  grub-pc/install_devices_disks_changed:

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.15 (GNU/Linux)

iEYEARECAAYFAlJj6oQACgkQw5UvgfnzqGo+4QCeO/GOZcGobf/xP2yNhd7q0aQY
3rwAni4UtUMvIRLem3qAKOnY8im+r/YB
=TWnV
-----END PGP SIGNATURE-----



More information about the Pkg-grub-devel mailing list