Your message dated Mon, 22 Dec 2014 13:49:12 +0000
with message-id <[email protected]>
and subject line Bug#773092: fixed in grub2 2.02~beta2-19
has caused the Debian Bug report #773092,
regarding grub-efi-amd64: grub efi installation failure
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.)


-- 
773092: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773092
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-efi-amd64
Version: 2.02~beta2-18
Severity: important

On debconf prompt, grub-efi-amd64 asked my if I would want to force
install grub onto the EFI partition. I said yes, and it failed...


Setting up libwebkitgtk-3.0-0:amd64 (2.4.7-3) ...
Setting up libpackagekit-glib2-18:amd64 (1.0.1-2) ...
Setting up grub-common (2.02~beta2-18) ...
Setting up grub2-common (2.02~beta2-18) ...
Setting up grub-efi-amd64-bin (2.02~beta2-18) ...
Setting up grub-efi-amd64 (2.02~beta2-18) ...
Installing for x86_64-efi platform.
grub-install: error: cannot open `/boot/efi/EFI/BOOT/BOOTX64.EFI': File
exists.
Failed: grub-install --target=x86_64-efi --force-extra-removable
WARNING: Bootloader is not properly installed, system may not be
bootable
Generating grub configuration file ...
Found background image: .background_cache.png
Found linux image: /boot/vmlinuz-3.16.0-4-amd64
Found initrd image: /boot/initrd.img-3.16.0-4-amd64
Found Windows Boot Manager on /dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration
Found Grml ISO image: /boot/grml/grml64-full_2014.03.iso
Found Grml ISO image: /boot/grml/grml64-small_2014.03.iso
done
Setting up grub-efi (2.02~beta2-18) ...
Setting up packagekit (1.0.1-2) ...
Reloading dbus configuration (via systemctl): dbus.service.
Setting up packagekit-tools (1.0.1-2) ...
Setting up python-astroid (1.2.1-3) ...
Processing triggers for libc-bin (2.19-13) ...
                                         
Current status: 0 updates [-12].



Looking at that path:

rrs@learner:~$ ls /boot/efi/EFI/BOOT/BOOTX64.EFI
ls: cannot access /boot/efi/EFI/BOOT/BOOTX64.EFI: No such file or
directory
13:49 ♒♒♒   ☹  => 2  
rrs@learner:~$ ls /boot/efi/EFI/BOOT/bootx64.efi 
/boot/efi/EFI/BOOT/bootx64.efi*
13:49 ♒♒♒  ☺ 

/boot/efi is mounted as:

/dev/sda2 on /boot/efi type vfat
(rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=utf8,shortname=mixed,errors=remount-ro)

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/LocalCrypt-ROOT / ext4 
rw,relatime,errors=remount-ro,commit=600,data=writeback 0 0
/dev/sda6 /boot ext4 rw,relatime,commit=600,data=ordered 0 0
/dev/sda2 /boot/efi vfat 
rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=utf8,shortname=mixed,errors=remount-ro
 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
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

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
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
else
  search --no-floppy --fs-uuid --set=root 33176b2c-e136-4c68-8a42-b11dfa8e052a
fi
    font="/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
else
  search --no-floppy --fs-uuid --set=root 33176b2c-e136-4c68-8a42-b11dfa8e052a
fi
insmod png
if background_image /grub/.background_cache.png; then
  set color_normal=white/black
  set color_highlight=black/white
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 ###
function gfxmode {
        set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os $menuentry_id_option 
'gnulinux-simple-d8469364-aa4b-4cfb-aca1-2cc988514949' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt6'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
        else
          search --no-floppy --fs-uuid --set=root 
33176b2c-e136-4c68-8a42-b11dfa8e052a
        fi
        echo    'Loading Linux 3.16.0-4-amd64 ...'
        linux   /vmlinuz-3.16.0-4-amd64 root=/dev/mapper/LocalCrypt-ROOT ro  
rootflags=data=writeback  cgroup_enable=memory swapaccount=1 
init=/lib/systemd/systemd  quiet 
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-3.16.0-4-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-d8469364-aa4b-4cfb-aca1-2cc988514949' {
        menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.16.0-4-amd64-advanced-d8469364-aa4b-4cfb-aca1-2cc988514949' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt6'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
                else
                  search --no-floppy --fs-uuid --set=root 
33176b2c-e136-4c68-8a42-b11dfa8e052a
                fi
                echo    'Loading Linux 3.16.0-4-amd64 ...'
                linux   /vmlinuz-3.16.0-4-amd64 
root=/dev/mapper/LocalCrypt-ROOT ro  rootflags=data=writeback  
cgroup_enable=memory swapaccount=1 init=/lib/systemd/systemd  quiet 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.16.0-4-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.16.0-4-amd64-recovery-d8469364-aa4b-4cfb-aca1-2cc988514949' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt6'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
                else
                  search --no-floppy --fs-uuid --set=root 
33176b2c-e136-4c68-8a42-b11dfa8e052a
                fi
                echo    'Loading Linux 3.16.0-4-amd64 ...'
                linux   /vmlinuz-3.16.0-4-amd64 
root=/dev/mapper/LocalCrypt-ROOT ro single  rootflags=data=writeback  
cgroup_enable=memory swapaccount=1 init=/lib/systemd/systemd 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-3.16.0-4-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 'Windows Boot Manager (on /dev/sda2)' --class windows --class os 
$menuentry_id_option 'osprober-efi-5C4B-9790' {
        insmod part_gpt
        insmod fat
        set root='hd0,gpt2'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  5C4B-9790
        else
          search --no-floppy --fs-uuid --set=root 5C4B-9790
        fi
        chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
        fwsetup
}
### 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 ###

### BEGIN /etc/grub.d/42_grml ###
menuentry "Grml Rescue System (grml64-full_2014.03.iso)" {
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt6'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
        else
          search --no-floppy --fs-uuid --set=root 
33176b2c-e136-4c68-8a42-b11dfa8e052a
        fi
        iso_path="/grml/grml64-full_2014.03.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/grml/grml64-full_2014.03.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
menuentry "Grml Rescue System (grml64-small_2014.03.iso)" {
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt6'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 
--hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6  
33176b2c-e136-4c68-8a42-b11dfa8e052a
        else
          search --no-floppy --fs-uuid --set=root 
33176b2c-e136-4c68-8a42-b11dfa8e052a
        fi
        iso_path="/grml/grml64-small_2014.03.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/grml/grml64-small_2014.03.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
### END /etc/grub.d/42_grml ###
*********************** 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 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1 -> 
../../sda
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part2 -> 
../../sda2
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part3 -> 
../../sda3
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part4 -> 
../../sda4
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part5 -> 
../../sda5
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part6 -> 
../../sda6
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ata-ST1000LM014-1EJ164_W38110C1-part7 -> 
../../sda7
lrwxrwxrwx 1 root root 10 Dec 12 15:44 dm-name-LocalCrypt-ROOT -> ../../dm-2
lrwxrwxrwx 1 root root 10 Dec 12 15:44 dm-name-LocalCrypt-SWAP -> ../../dm-1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 dm-name-sda7_crypt -> ../../dm-0
lrwxrwxrwx 1 root root 10 Dec 12 15:44 
dm-uuid-CRYPT-LUKS1-ae658322236d489a8a9c371a369873ec-sda7_crypt -> ../../dm-0
lrwxrwxrwx 1 root root 10 Dec 12 15:44 
dm-uuid-LVM-I5RGey9iK9SNWGu1I2zvqKw03J5Tc6E2EFCuC47tXbPTLHPSOT3gZgMxQtk13Ca2 -> 
../../dm-2
lrwxrwxrwx 1 root root 10 Dec 12 15:44 
dm-uuid-LVM-I5RGey9iK9SNWGu1I2zvqKw03J5Tc6E2WL5D751esJUkGCYFYCPrwWAcGJR23Ui9 -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 
lvm-pv-uuid-EPHp5W-cV3r-6FuB-d4xD-JZ5x-pGiU-3mMpk2 -> ../../dm-0
lrwxrwxrwx 1 root root  9 Dec 12 15:44 wwn-0x5000c5007287a128 -> ../../sda
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part2 -> 
../../sda2
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part3 -> 
../../sda3
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part4 -> 
../../sda4
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part5 -> 
../../sda5
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part6 -> 
../../sda6
lrwxrwxrwx 1 root root 10 Dec 12 15:44 wwn-0x5000c5007287a128-part7 -> 
../../sda7
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Dec 12 15:44 24A009A6A0097F92 -> ../../sda1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 33176b2c-e136-4c68-8a42-b11dfa8e052a -> 
../../sda6
lrwxrwxrwx 1 root root 10 Dec 12 15:44 54FEE0A6FEE0819A -> ../../sda4
lrwxrwxrwx 1 root root 10 Dec 12 15:44 5C4B-9790 -> ../../sda2
lrwxrwxrwx 1 root root 10 Dec 12 15:44 D268077E68076099 -> ../../sda5
lrwxrwxrwx 1 root root 10 Dec 12 15:44 ae658322-236d-489a-8a9c-371a369873ec -> 
../../sda7
lrwxrwxrwx 1 root root 10 Dec 12 15:44 c0d8fdcd-9027-4035-bbe2-095f87e15979 -> 
../../dm-1
lrwxrwxrwx 1 root root 10 Dec 12 15:44 d8469364-aa4b-4cfb-aca1-2cc988514949 -> 
../../dm-2
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages grub-efi-amd64 depends on:
ii  debconf [debconf-2.0]  1.5.54
ii  grub-common            2.02~beta2-18
ii  grub-efi-amd64-bin     2.02~beta2-18
ii  grub2-common           2.02~beta2-18
ii  ucf                    3.0030

grub-efi-amd64 recommends no packages.

grub-efi-amd64 suggests no packages.

-- debconf information:
  grub2/kfreebsd_cmdline_default: quiet
* grub2/linux_cmdline: rootflags=data=writeback cgroup_enable=memory 
swapaccount=1 init=/lib/systemd/systemd
* grub2/force_efi_extra_removable: true
  grub2/kfreebsd_cmdline:
  grub2/device_map_regenerated:
* grub2/linux_cmdline_default: quiet

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.02~beta2-19

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.

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.
Ian Campbell <[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: Mon, 22 Dec 2014 11:55:33 +0000
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-emu-dbg grub-pc-bin grub-pc-dbg grub-pc grub-rescue-pc grub-coreboot-bin 
grub-coreboot-dbg grub-coreboot grub-efi-ia32-bin grub-efi-ia32-dbg 
grub-efi-ia32 grub-efi-amd64-bin grub-efi-amd64-dbg grub-efi-amd64 
grub-efi-ia64-bin grub-efi-ia64-dbg grub-efi-ia64 grub-efi-arm-bin 
grub-efi-arm-dbg grub-efi-arm grub-efi-arm64-bin grub-efi-arm64-dbg 
grub-efi-arm64 grub-ieee1275-bin grub-ieee1275-dbg grub-ieee1275 
grub-firmware-qemu grub-uboot-bin grub-uboot-dbg grub-uboot grub-xen-bin 
grub-xen-dbg grub-xen grub-xen-host grub-yeeloong-bin grub-yeeloong-dbg 
grub-yeeloong grub-theme-starfield grub-mount-udeb
Architecture: source
Version: 2.02~beta2-19
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Ian Campbell <[email protected]>
Description:
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot binaries)
 grub-coreboot-dbg - GRand Unified Bootloader, version 2 (Coreboot debug files)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
 grub-efi-amd64-dbg - GRand Unified Bootloader, version 2 (EFI-AMD64 debug 
files)
 grub-efi-arm - GRand Unified Bootloader, version 2 (ARM UEFI version)
 grub-efi-arm-bin - GRand Unified Bootloader, version 2 (ARM UEFI binaries)
 grub-efi-arm-dbg - GRand Unified Bootloader, version 2 (ARM UEFI debug files)
 grub-efi-arm64 - GRand Unified Bootloader, version 2 (ARM64 UEFI version)
 grub-efi-arm64-bin - GRand Unified Bootloader, version 2 (ARM64 UEFI binaries)
 grub-efi-arm64-dbg - GRand Unified Bootloader, version 2 (ARM64 UEFI debug 
files)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 binaries)
 grub-efi-ia32-dbg - GRand Unified Bootloader, version 2 (EFI-IA32 debug files)
 grub-efi-ia64 - GRand Unified Bootloader, version 2 (IA64 version)
 grub-efi-ia64-bin - GRand Unified Bootloader, version 2 (IA64 binaries)
 grub-efi-ia64-dbg - GRand Unified Bootloader, version 2 (IA64 debug files)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-emu-dbg - GRand Unified Bootloader, version 2 (emulated debug files)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware 
binaries)
 grub-ieee1275-dbg - GRand Unified Bootloader, version 2 (Open Firmware debug 
files)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS binaries)
 grub-pc-dbg - GRand Unified Bootloader, version 2 (PC/BIOS debug files)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-theme-starfield - GRand Unified Bootloader, version 2 (starfield theme)
 grub-uboot - GRand Unified Bootloader, version 2 (ARM U-Boot version)
 grub-uboot-bin - GRand Unified Bootloader, version 2 (ARM U-Boot binaries)
 grub-uboot-dbg - GRand Unified Bootloader, version 2 (ARM U-Boot debug files)
 grub-xen   - GRand Unified Bootloader, version 2 (Xen version)
 grub-xen-bin - GRand Unified Bootloader, version 2 (Xen binaries)
 grub-xen-dbg - GRand Unified Bootloader, version 2 (Xen debug files)
 grub-xen-host - GRand Unified Bootloader, version 2 (Xen host version)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong binaries)
 grub-yeeloong-dbg - GRand Unified Bootloader, version 2 (Yeeloong debug files)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 772771 772878 772916 772921 772922 772924 772930 772946 773004 773054 
773060 773068 773092 773096 773160 773208 773211 773222 773349 773377 773418 
773508 773553 773637 773664 773666 773682
Changes:
 grub2 (2.02~beta2-19) unstable; urgency=medium
 .
   [ Steve McIntyre ]
   * Handle case insensitivity of VFAT filesystem on /boot/EFI when installing
     extra cpoy of grub-efi to the removable media path
     /boot/efi/EFI/BOOT/BOOT$ARCH.EFI (Closes: #773092)
   * Make the force_efi_extra_removable debconf prompt only show up when
     configuring grub-*efi*. Closes: #773004
 .
   [ Ian Campbell ]
   * Improvements to English wording of new debconf template from Justin B Rye.
   * Add debian/README.source.
 .
   [ Debconf translations ]
   * [eu] Basque (Iñaki Larrañaga Murgoitio, Closes: #772946)
   * [be] Belarusian (Viktar Siarheichyk, Closes: #773054)
   * [pt_BR] Brazilian Portuguese (Adriano Rafael Gomes, Closes: #773682)
   * [bg] Bulgarian (Damyan Ivanov, Closes: #772878)
   * [cs] Czech (Miroslav Kure, Closes: #772924)
   * [nl] Dutch (Frans Spiesschaert, Closes: 773637)
   * [eo] Esperanto (Felipe Castro, Closes: #773096)
   * [fi] Finish (Timo Jyrinki, Closes: #772921)
   * [fr] French (Christian PERRIER, Closes: #772771)
   * [de] German (Martin Eberhard Schauer, Closes: #773664)
   * [el] Greek (Panagiotis Georgakopoulos, Closes: #773068)
   * [he] Hebrew (Omer Zak, Closes: #773377)
   * [is] Icelandic (Sveinn í Felli, Closes: #772922)
   * [it] Italian (Luca Monducci, Closes: #773553)
   * [kk] Kazakh (Baurzhan Muftakhidinov, Closes: #772916)
   * [lt] Lithuanian (Rimas Kudelis, Closes: #773060)
   * [pl] Polish (Łukasz Dulny, Closes: #772930)
   * [ro] Romanian (Andrei POPESCU, Closes: #773349)
   * [ru] Russian (Yuri Kozlov, Closes: #773211)
   * [sl] Slovenian (Vanja Cvelbar, Closes: #773508)
   * [es] Spanish (Manuel "Venturi" Porras Peralta, Closes: #773222)
   * [sv] Swedish (Martin Bagge & Anders Jonsson, Closes: 773208)
   * [th] Thai (Theppitak Karoonboonyanan, Closes: #773160)
   * [zh_TW] Traditional Chinese (Vincent W. Chen, Closes: #773418)
   * [tr] Turkish (Mert Dirik, Closes: #773666)
Checksums-Sha1:
 a38dff0a1a0c0b88a0cce9cc6f9cce9a5bb8bddc 6380 grub2_2.02~beta2-19.dsc
 ce27e689fdc585cabe95888daedce5e8f3e56a5f 1009820 
grub2_2.02~beta2-19.debian.tar.xz
Checksums-Sha256:
 4dbcd86038eaf0a40f5d333d086e5779d9de56b76023a2f18248907208864e48 6380 
grub2_2.02~beta2-19.dsc
 71e981a15721b0dd64bf2b4801eb0e09e1e93247f19d86f32e26076470755bf1 1009820 
grub2_2.02~beta2-19.debian.tar.xz
Files:
 4392f158291ea62b9f4e1c396aa54521 6380 admin extra grub2_2.02~beta2-19.dsc
 81338db23180180a92fe7f7fb656f1b1 1009820 admin extra 
grub2_2.02~beta2-19.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJUmApsAAoJECouJZ9pWkbGPTkP/0f9k0OTIOq2H8bM3LVOyoxA
ZT909ywA1CstZpZBPx95U6fVryRI2pVvYIhJJyDTBZ00bCWt5UsULuBmHIWRZS6/
5La77tDq/5j7qdxQqw0+XnuiDfGTxhwiq6r7oMQPL9D9V4KQlhXagqWAY8icuOK1
2vHpwa/x2iYmRPVAl63jInTLSGhy2CHhu13qgBU4mNhQCZJCwLvD2B2mksaSubJA
71vShcSo2QqO8m2jP/HCDsGxhNS8n+1g4bl0K9WrPirYKbiGKR/L3BJaJpWnriBE
keRKP5GHIX3jR4s0DuOYvlrl94HUztF+49HZA4UIhY5XeylsjXwpjhcf6u6fqLDd
ahWGl7Mi0/ePN7sfGapJb/guJBtkP4tj0Zv8vKGHZPsrh9GFZP0bc4BNvw+9JZlA
lBIZ1Ed2L/cLQgjXo4Ta/91Zh+b3ooIgow5fWOyssuS5G7zHnrTazIJWKc5EX7Ah
VZLlWYJuLh1C8Ize2miTur6NQaWbYDYYKYXv/BqkXpXXfhaNnlYCu24a7Xog4xnX
bUo+sz6tZDmXNSrtBXj3zZctNWI7kF2cgXegs5koYvmOIxdExEg4NRKLmm3PdfAF
trbogOZnpEUjQeLbSGJA+NQG1QwaA3tsn3OQ/Gl2mhmFLWVtHPhbRJKKQRjj6P1F
xYSLwGRBWKus5Vv4nNBa
=bo1L
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to