Your message dated Sat, 06 Feb 2021 17:48:55 +0000
with message-id <[email protected]>
and subject line Bug#979299: fixed in grub2 2.04-13
has caused the Debian Bug report #979299,
regarding "System setup" entry gone: /etc/grub.d/30_uefi-firmware doesn't work 
with linux-image-5.10.* anymore because support for the old efivars interface 
/sys/firmware/efi/vars has been dropped
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.)


-- 
979299: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=979299
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-common
Version: 2.04-12
Severity: normal

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

I recently discovered that my "System Setup" entry in the grub menu went
missing. While debugging I found that (with the recent
linux-image-5.10.0-1-amd64 kernel package installed) the /sys/firmware/efi/vars
interface had gone. It seems the images provided no longer support this
interface:

grep -rnw CONFIG_EFI_VARS /boot/config-5.9.0-5-amd64 /boot/config-5.10.0-1-amd64
/boot/config-5.9.0-5-amd64:679:CONFIG_EFI_VARS=m
/boot/config-5.10.0-1-amd64:682:# CONFIG_EFI_VARS is not set

There are also some changelog entries referring to changes regarding efivars.
It seems with this recent change in the kernel packages the script won't work
anymore and needs fixing.

Regards, Daniel


- -- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/nvme0n1p6_crypt / ext4 rw,relatime,errors=remount-ro 0 0
/dev/nvme0n1p5 /boot ext4 rw,relatime 0 0
/dev/nvme0n1p1 /boot/efi vfat 
rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
 0 0
/dev/sda2 /home ext4 rw,relatime 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 ext2
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  98c84654-dbce-45dc-a29d-65d3fb83d767
else
  search --no-floppy --fs-uuid --set=root 98c84654-dbce-45dc-a29d-65d3fb83d767
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
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 ext2
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  98c84654-dbce-45dc-a29d-65d3fb83d767
else
  search --no-floppy --fs-uuid --set=root 98c84654-dbce-45dc-a29d-65d3fb83d767
fi
insmod png
if background_image 
/usr/share/desktop-base/futureprototype-theme/grub/grub-16x9.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-98c84654-dbce-45dc-a29d-65d3fb83d767' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
        else
          search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
        fi
        echo    'Loading Linux 5.10.0-1-amd64 ...'
        linux   /vmlinuz-5.10.0-1-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-5.10.0-1-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
        menuentry 'Debian GNU/Linux, with Linux 5.10.0-1-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.10.0-1-amd64-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.10.0-1-amd64 ...'
                linux   /vmlinuz-5.10.0-1-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.10.0-1-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.10.0-1-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.10.0-1-amd64-recovery-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.10.0-1-amd64 ...'
                linux   /vmlinuz-5.10.0-1-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.10.0-1-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.9.0-5-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.9.0-5-amd64-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.9.0-5-amd64 ...'
                linux   /vmlinuz-5.9.0-5-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.9.0-5-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.9.0-5-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.9.0-5-amd64-recovery-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.9.0-5-amd64 ...'
                linux   /vmlinuz-5.9.0-5-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.9.0-5-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.9.0-2-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.9.0-2-amd64-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.9.0-2-amd64 ...'
                linux   /vmlinuz-5.9.0-2-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.9.0-2-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.9.0-2-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.9.0-2-amd64-recovery-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.9.0-2-amd64 ...'
                linux   /vmlinuz-5.9.0-2-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.9.0-2-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.3.0-3-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.3.0-3-amd64-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.3.0-3-amd64 ...'
                linux   /vmlinuz-5.3.0-3-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.3.0-3-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.3.0-3-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.3.0-3-amd64-recovery-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 5.3.0-3-amd64 ...'
                linux   /vmlinuz-5.3.0-3-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-5.3.0-3-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-5-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.19.0-5-amd64-advanced-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 4.19.0-5-amd64 ...'
                linux   /vmlinuz-4.19.0-5-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro  quiet
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-5-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-5-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.19.0-5-amd64-recovery-98c84654-dbce-45dc-a29d-65d3fb83d767' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root  
84bbd663-3020-4836-9d08-37b36ad5572b
                else
                  search --no-floppy --fs-uuid --set=root 
84bbd663-3020-4836-9d08-37b36ad5572b
                fi
                echo    'Loading Linux 4.19.0-5-amd64 ...'
                linux   /vmlinuz-4.19.0-5-amd64 
root=UUID=98c84654-dbce-45dc-a29d-65d3fb83d767 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-5-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/nvme0n1p1)' --class windows --class os 
$menuentry_id_option 'osprober-efi-846F-394B' {
        insmod part_gpt
        insmod fat
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root  846F-394B
        else
          search --no-floppy --fs-uuid --set=root 846F-394B
        fi
        chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### 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
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] 
[raid10] 
unused devices: <none>
*********************** END /proc/mdstat

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Jan  4 23:59 ata-WDC_WD10SPZX-21Z10T0_WD-WXL1A78JUV05 
-> ../../sda
lrwxrwxrwx 1 root root 10 Jan  4 23:59 
ata-WDC_WD10SPZX-21Z10T0_WD-WXL1A78JUV05-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Jan  4 23:59 
ata-WDC_WD10SPZX-21Z10T0_WD-WXL1A78JUV05-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Jan  4 23:59 
ata-WDC_WD10SPZX-21Z10T0_WD-WXL1A78JUV05-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Jan  4 23:59 
ata-WDC_WD10SPZX-21Z10T0_WD-WXL1A78JUV05-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Jan  4 23:59 dm-name-nvme0n1p6_crypt -> ../../dm-0
lrwxrwxrwx 1 root root 10 Jan  4 23:59 
dm-uuid-CRYPT-LUKS2-505a2d1c8443481abbb52cc241a9bdb6-nvme0n1p6_crypt -> 
../../dm-0
lrwxrwxrwx 1 root root 13 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part5 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root 15 Jan  4 23:59 
nvme-Samsung_SSD_970_EVO_250GB_S465NX0K938139J-part6 -> ../../nvme0n1p6
lrwxrwxrwx 1 root root 13 Jan  4 23:59 nvme-eui.0025385981b3d129 -> 
../../nvme0n1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part1 -> 
../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part2 -> 
../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part3 -> 
../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part4 -> 
../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part5 -> 
../../nvme0n1p5
lrwxrwxrwx 1 root root 15 Jan  4 23:59 nvme-eui.0025385981b3d129-part6 -> 
../../nvme0n1p6
lrwxrwxrwx 1 root root  9 Jan  4 23:59 wwn-0x50014ee6b387a59f -> ../../sda
lrwxrwxrwx 1 root root 10 Jan  4 23:59 wwn-0x50014ee6b387a59f-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Jan  4 23:59 wwn-0x50014ee6b387a59f-part2 -> 
../../sda2
lrwxrwxrwx 1 root root 10 Jan  4 23:59 wwn-0x50014ee6b387a59f-part3 -> 
../../sda3
lrwxrwxrwx 1 root root 10 Jan  4 23:59 wwn-0x50014ee6b387a59f-part4 -> 
../../sda4
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 15 Jan  4 23:59 2E8071D68071A4CD -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Jan  4 23:59 505a2d1c-8443-481a-bbb5-2cc241a9bdb6 -> 
../../nvme0n1p6
lrwxrwxrwx 1 root root 10 Jan  4 23:59 72E4875DE4872289 -> ../../sda1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 846F-394B -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Jan  4 23:59 84bbd663-3020-4836-9d08-37b36ad5572b -> 
../../nvme0n1p5
lrwxrwxrwx 1 root root 10 Jan  4 23:59 98c84654-dbce-45dc-a29d-65d3fb83d767 -> 
../../dm-0
lrwxrwxrwx 1 root root 10 Jan  4 23:59 b5b44ec3-53d5-4e40-becc-a69e7fcc3e04 -> 
../../sda2
*********************** END /dev/disk/by-uuid

- -- System Information:
Debian Release: bullseye/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.9.0-5-amd64 (SMP w/8 CPU threads)
Kernel taint flags: TAINT_OOT_MODULE
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages grub-common depends on:
ii  gettext-base        0.21-3
ii  libc6               2.31-7
ii  libdevmapper1.02.1  2:1.02.173-1
ii  libefiboot1         37-6
ii  libefivar1          37-6
ii  libfreetype6        2.10.4+dfsg-1
ii  libfuse2            2.9.9-3
ii  liblzma5            5.2.5-1.0

Versions of packages grub-common recommends:
ii  os-prober  1.77

Versions of packages grub-common suggests:
ii  console-setup  1.200
ii  desktop-base   10.0.3
pn  grub-emu       <none>
pn  multiboot-doc  <none>
ii  xorriso        1.5.2-1

- -- no debconf information

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEvu1N7VVEpMA+KD3HS80FZ8KW0F0FAl/zoXIACgkQS80FZ8KW
0F0r2w/7BA2/R9fwboAxUdcPlYmhAdQlzpk9FKG++eyyj9Hx4zxRgqQhYR91qGXk
LsI8DXCZEnuegfVyViLJyhkx9itmpQEGrp62ZEMPW+gJxql4VIrCUVIgRINYpvN/
uvjr04HrLayEa0Jfd75mM+MPA2czwZFK7SSD980e+bb/u6zXe0eeYe9rYQqkin0y
CbhLxIHm056vtIV0rUVMxDbeH0GPeNxS4X8W7vZDHljr+sIZHz/Hg0cWlAL8LrZE
sfDNX9/guTMXWIbIwS2o5ekk3hXIAfziswjyR+CWfscGrgDNw/SYImYXLutd/WB8
JG2mpUlUFNXZjSAK9wp0mBzmDgo6ShqPW+6GU8aDbh4h3NbdwV52QcGa5he31vy8
Vr4ttrnLtGMFWxgAoSlJC+mlPz64T1LiyNaKEQXJvmT++FRc2Hf2LWo8qZ//7+CI
dKZT6sCfj190i3gCCgw/tZeO2XaiatnQGT/yRz6hAA+fcTtHXIQZoxqCvs77W7hd
hsqHcNYzkCEep4IAb982+nEHaJpM62eP/HH7pWh0eEyXbKO9sc6uWUsQ+LnnH18g
JhFz3BCy9Q5PBThgj8yhr1Ag/91ntiWIM7YNLyIGbsqMciMDdm7XF5PbQqRveCG+
Eu+TRRkWqtlFQAGMgj25T0M72f1mnF/duOaueOcvOuEv9byZ8BI=
=Sq5X
-----END PGP SIGNATURE-----

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.04-13
Done: Colin Watson <[email protected]>

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.
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: Sat, 06 Feb 2021 17:30:38 +0000
Source: grub2
Architecture: source
Version: 2.04-13
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Closes: 979299
Changes:
 grub2 (2.04-13) unstable; urgency=medium
 .
   [ Steve McIntyre ]
   * Switch to using the efivarfs interface for detecting "system setup"
     (Closes: #979299)
Checksums-Sha1:
 6ce1228c2db9ea843fb88fe865d152f5a29ae4ca 7120 grub2_2.04-13.dsc
 3ab031388f3e4e2baaeddc7e1292301d9a319959 1098188 grub2_2.04-13.debian.tar.xz
Checksums-Sha256:
 74552ba466453e7f15543f7696cf976684a7d7ee085197e51b2545f8eeb1921e 7120 
grub2_2.04-13.dsc
 2e00ef1892051d6de779ab34bd5143e7878c078623d658dd3d242e516ba6bc9a 1098188 
grub2_2.04-13.debian.tar.xz
Files:
 c479c5e535d3d0eabc345376c8a2d580 7120 admin optional grub2_2.04-13.dsc
 1e27fd1d067017c2220f60e4ebe00dde 1098188 admin optional 
grub2_2.04-13.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmAe0nQACgkQOTWH2X2G
UAtwbA//WOgMmOQWSALOpBCuQtkghNKH8PU7l6RHR4a6X2nGCgIX5ZK/2EEsKLOd
KNAtkWuoljo68ypuBQ1MtRFSeAdyVw+yOe+vsC8gKG4ZvYAQizthGHe5ja7XzmLf
aejh/10CMfDEml7rLVPFPXvsS9cLpAHKpsYhFebY7W9NTeVCpDHRDIDEcEtyeefq
ss6nxz8vjsdiWmYZxltttSe8O7Wrc0551regBCVhnsrXZGKYcHeScGQaysmxIVYQ
Pxl4APLpDJXqOspz5q1iLqBJ8Dc92PBF/tbeIJvfi1tFTJCwbNHmHxLbC5u2qWtv
/Ljx8uyaios5xz83VtvxLwBYTnjdoW5U4uvmH1UbL/cnT62PLKLFKrVZYXyspQWM
1ExYyeuOl3fun/XGMZdn1h6bD+hK7mtKPUIIh2TOBm0slFAv8qefxqLAiCs8lITP
yDllPUOzoHV4a69bDj89V7t1/zEg3zSNqQUV3U6ZZc3SaVO4DIajk+/ZDeHsE+J5
OpykwsSStw9NS3tCcqxJMUFH7h5k93j0DumXzEoJcz5ZacsiGn89LVcxhfVl4Ij+
LoV/pChFz8jW0CEk/7PX7Rxw9vknp5+h4QkATDUOqyZnU66SZv4buhzMlynrvuPn
UaMQXUggP5xHWn+DC+znwWZb+0P+W1+i2QcCer9YI01hqG1O6AI=
=+C6s
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to