Bug#979299: "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

Daniel Leidert dleidert at debian.org
Mon Jan 4 23:14:58 GMT 2021


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-----



More information about the Pkg-grub-devel mailing list