Bug#924151: grub2-common: wrong grub.cfg for efi boot and fully encrypted disk
Adam Hough
adam.hough at gmail.com
Sat May 13 23:06:28 BST 2023
Package: grub-efi-amd64-bin
Version: 2.06-12
Followup-For: Bug #924151
Dear Maintainer,
* What led up to the situation?
Upgraded to the latest grub2 packages on 2023-05-02 and then had a power outage today resulting in a reboot.
grep grub dpkg.log | grep upgrade
2023-05-02 16:44:00 upgrade grub-efi:amd64 2.06-8 2.06-12
2023-05-02 16:44:00 upgrade grub-efi-amd64:amd64 2.06-8 2.06-12
2023-05-02 16:44:01 upgrade grub2-common:amd64 2.06-8 2.06-12
2023-05-02 16:44:01 upgrade grub-efi-amd64-bin:amd64 2.06-8 2.06-12
2023-05-02 16:44:03 upgrade grub-ieee1275-bin:amd64 2.06-8 2.06-12
2023-05-02 16:44:05 upgrade grub-emu:amd64 2.06-8 2.06-12
2023-05-02 16:44:07 upgrade grub-common:amd64 2.06-8 2.06-12
2023-05-02 16:44:08 upgrade grub-efi-amd64-signed:amd64 1+2.06+8 1+2.06+12
2023-05-02 16:44:09 upgrade grub-firmware-qemu:amd64 2.06-8 2.06-12
2023-05-13 19:18:55 upgrade grub-efi:amd64 2.06-12 2.06-12
* What exactly did you do (or not do) that was effective (or
ineffective)?
Current setup is a fully encrypted via luks1 BTRFS based root partition spanning 2 SSD devices in a raid1 configuration. Each drive has a ESP EFI partition on partition 2 and a Mdraid 10 on partition 3 with the BTRFS root on partition 4. The first partition is a vfat partition to store bios firmware updates and some recovery scripts information to make recovery easier.
On reboot, grub will ask for my password to decrypt the btrfs root partitions. This is successful and will will load the grub screen. When trying to boot the linux kernel entry there is an error as grub cannot find the linux kernel.
The command "search.fs_uuid 904c1ede-e04b-4102-a982-2333af179474 root cryptouuid/707fed618803485ea28d54b3b229be77 cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6" fails to find t
he uuid "904c1ede-e04b-4102-a982-2333af179474" so cannot find the vmlinuz and initrd files.
I have not tried the previous work around listed here yet.
After a few hours switch to systemd-boot but would prefer to switch back to a fully encrypted boot as the linux and initrd images are not in the ESP partition.
* What was the outcome of this action?
The systemd-boot boot method did work.
* What outcome did you expect instead?
Expect it to work like it did previously as it did on the last boot on Sat Mar 25 12:32:12 CET 2023 which was with grub 2.06-8.
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/mapper/crypt_samsung870evo / btrfs rw,relatime,ssd,space_cache=v2,subvolid=256,subvol=/activeroot 0 0
/dev/mapper/crypt_samsung870evo /mnt/btrfsrootencrypted btrfs rw,relatime,ssd,space_cache=v2,subvolid=5,subvol=/ 0 0
/dev/mapper/crypt_samsung870evo /timemachine_ahough01 btrfs rw,relatime,ssd,space_cache=v2,subvolid=257,subvol=/timemachine_ahough01 0 0
/dev/mapper/crypt_8tb1 /btrfs_pool btrfs rw,relatime,compress=zlib:3,space_cache,subvolid=5,subvol=/ 0 0
/dev/mapper/crypt_8tb1 /virt btrfs rw,relatime,compress=zlib:3,space_cache,subvolid=263,subvol=/virt_machines 0 0
/dev/mapper/crypt_8tb1 /data btrfs rw,relatime,compress=zlib:3,space_cache,subvolid=258,subvol=/data 0 0
/dev/mapper/crypt_samsung870evo /var/lib/docker/btrfs btrfs rw,relatime,ssd,space_cache=v2,subvolid=256,subvol=/activeroot 0 0
/dev/nvme0n1p2 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/sdb2 /boot/efi2 vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/nvme0n1p1 /mnt/VFATNVME vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/sdb1 /mnt/VFATSSD vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,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 ###
insmod usb
insmod usb_keyboard
insmod ohci
insmod uhci
insmod ehci
insmod cryptodisk
insmod crypto
insmod search_fs_uuid
insmod search_label
insmod search
insmod btrfs
insmod part_gpt
insmod part_msdos
insmod luks
insmod disk
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 part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
font="/activeroot/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1280x1024
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input usb_keyboard
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/00_tuned ###
set tuned_params=""
set tuned_initrd=""
### END /etc/grub.d/00_tuned ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
insmod png
if background_image /activeroot/usr/share/desktop-base/emerald-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-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 6.1.0-9-amd64 ...'
linux /activeroot/boot/vmlinuz-6.1.0-9-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue crashkernel=384M-:128M
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-6.1.0-9-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-904c1ede-e04b-4102-a982-2333af179474' {
menuentry 'Debian GNU/Linux, with Linux 6.1.0-9-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-9-amd64-advanced-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 6.1.0-9-amd64 ...'
linux /activeroot/boot/vmlinuz-6.1.0-9-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue crashkernel=384M-:128M
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-6.1.0-9-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.1.0-9-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-9-amd64-recovery-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 6.1.0-9-amd64 ...'
linux /activeroot/boot/vmlinuz-6.1.0-9-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro single rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-6.1.0-9-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.1.0-8-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-8-amd64-advanced-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 6.1.0-8-amd64 ...'
linux /activeroot/boot/vmlinuz-6.1.0-8-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue crashkernel=384M-:128M
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-6.1.0-8-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.1.0-8-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-8-amd64-recovery-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 6.1.0-8-amd64 ...'
linux /activeroot/boot/vmlinuz-6.1.0-8-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro single rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-6.1.0-8-amd64
}
menuentry 'Debian GNU/Linux, with Linux 5.19.0-2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.19.0-2-amd64-advanced-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 5.19.0-2-amd64 ...'
linux /activeroot/boot/vmlinuz-5.19.0-2-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue crashkernel=384M-:128M
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-5.19.0-2-amd64
}
menuentry 'Debian GNU/Linux, with Linux 5.19.0-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.19.0-2-amd64-recovery-904c1ede-e04b-4102-a982-2333af179474' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
echo 'Loading Linux 5.19.0-2-amd64 ...'
linux /activeroot/boot/vmlinuz-5.19.0-2-amd64 root=UUID=904c1ede-e04b-4102-a982-2333af179474 ro single rootflags=subvol=activeroot rd.auto=1 rd.skipfsck rd.md=1 rd.dm=1 rd.luks=1 rd.shell rd.info rd.retry=60 cgroup_enable=memory swapaccount=1 ipv6.disable=1 transparent_hugepage=madvise modprobe.blacklist=nouveau ip=dhcp rd.driver.pre=btrfs rootfstype=btrfs rd.md.uuid=6871e77e:83b74962:50fe3c84:0d6f2054 rd.luks.key=/etc/keys/btrfs_root.key rd.luks.name=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=crypt_nvme0n1p4 rd.luks.name=707fed61-8803-485e-a28d-54b3b229be77=crypt_samsung870evo rd.luks.name=65478109-a130-4e8d-a65d-cdbbcc91a946=crypt_swap_ssd rd.luks.options=2ef006b2-262c-49b5-bac3-a51ddefcbfe6=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=707fed61-8803-485e-a28d-54b3b229be77=luks,discard,no-read-workqueue,no-write-workqueue rd.luks.options=65478109-a130-4e8d-a65d-cdbbcc91a946=luks,discard,no-read-workqueue,no-write-workqueue
echo 'Loading initial ramdisk ...'
initrd /activeroot/boot/initrd.img-5.19.0-2-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/20_pcmemtest ###
menuentry "Memory test (pcmemtest)" {
insmod part_gpt
insmod part_gpt
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod cryptodisk
insmod luks
insmod gcry_rijndael
insmod gcry_rijndael
insmod gcry_sha256
insmod btrfs
cryptomount -u 707fed618803485ea28d54b3b229be77
cryptomount -u 2ef006b2262c49b5bac3a51ddefcbfe6
set root='cryptouuid/707fed618803485ea28d54b3b229be77
cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='cryptouuid/707fed618803485ea28d54b3b229be77' --hint='cryptouuid/2ef006b2262c49b5bac3a51ddefcbfe6' 904c1ede-e04b-4102-a982-2333af179474
else
search --no-floppy --fs-uuid --set=root 904c1ede-e04b-4102-a982-2333af179474
fi
linuxefi /activeroot/boot/pcmemtestx64.efi
}
### END /etc/grub.d/20_pcmemtest ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###
### 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 ###
### END /etc/grub.d/42_grml ###
### BEGIN /etc/grub.d/60_grub-imageboot ###
### END /etc/grub.d/60_grub-imageboot ###
*********************** END /boot/grub/grub.cfg
*********************** BEGIN /proc/mdstat
Personalities : [raid10]
md127 : active raid10 sdb3[0] nvme0n1p3[1]
33520640 blocks super 1.2 2 near-copies [2/2] [UU]
unused devices: <none>
*********************** END /proc/mdstat
*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-HL-DT-ST_BD-RE_WH16NS40_KELI59J0603 -> ../../sr0
lrwxrwxrwx 1 root root 9 May 13 21:06 ata-SATA_SSD_19081924000211 -> ../../sdi
lrwxrwxrwx 1 root root 10 May 13 21:06 ata-SATA_SSD_19081924000211-part1 -> ../../sdi1
lrwxrwxrwx 1 root root 10 May 13 21:06 ata-SATA_SSD_19081924000211-part2 -> ../../sdi2
lrwxrwxrwx 1 root root 10 May 13 21:06 ata-SATA_SSD_19081924000211-part3 -> ../../sdi3
lrwxrwxrwx 1 root root 9 May 13 21:28 ata-ST2000DL003-9VT166_5YD8X2A3 -> ../../sdk
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-ST8000NE001-2M7101_WSD7QN9L -> ../../sde
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-ST8000NE001-2M7101_WSD7QN9L-part1 -> ../../sde1
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-ST8000VN0022-2EL112_ZA1EEDQL -> ../../sdf
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-ST8000VN0022-2EL112_ZA1EEDQL-part1 -> ../../sdf1
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-ST8000VN0022-2EL112_ZA1EEHQ2 -> ../../sdg
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-ST8000VN0022-2EL112_ZA1EEHQ2-part1 -> ../../sdg1
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-ST8000VN004-2M2101_WKD19D2C -> ../../sdd
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-ST8000VN004-2M2101_WKD19D2C-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-ST8000VN004-2M2101_WSD9LZMX -> ../../sda
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-ST8000VN004-2M2101_WSD9LZMX-part1 -> ../../sda1
lrwxrwxrwx 1 root root 9 May 13 20:39 ata-Samsung_SSD_870_EVO_1TB_S6PUNM0T214093M -> ../../sdb
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-Samsung_SSD_870_EVO_1TB_S6PUNM0T214093M-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-Samsung_SSD_870_EVO_1TB_S6PUNM0T214093M-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-Samsung_SSD_870_EVO_1TB_S6PUNM0T214093M-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 May 13 20:39 ata-Samsung_SSD_870_EVO_1TB_S6PUNM0T214093M-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 9 May 13 21:28 ata-WDC_WD30EFRX-68AX9N0_WD-WCC1T0818808 -> ../../sdc
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_8tb1 -> ../../dm-7
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_8tb2 -> ../../dm-5
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_8tb3 -> ../../dm-3
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_8tb4 -> ../../dm-6
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_8tb5 -> ../../dm-4
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_nvme0n1p4 -> ../../dm-2
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_samsung870evo -> ../../dm-0
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-name-crypt_swap_ssd -> ../../dm-1
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS1-2ef006b2262c49b5bac3a51ddefcbfe6-crypt_nvme0n1p4 -> ../../dm-2
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS1-707fed618803485ea28d54b3b229be77-crypt_samsung870evo -> ../../dm-0
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-11b06964542d4cbab43f56809c846d50-crypt_8tb2 -> ../../dm-5
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-172dade2d1c347eabbce0655622b0bbf-crypt_8tb4 -> ../../dm-6
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-65478109a1304e8da65dcdbbcc91a946-crypt_swap_ssd -> ../../dm-1
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-8d2a575ffab64d0daeb7537b43581084-crypt_8tb5 -> ../../dm-4
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-c1ad736cf67544ea981e3913b63e11e6-crypt_8tb3 -> ../../dm-3
lrwxrwxrwx 1 root root 10 May 13 20:39 dm-uuid-CRYPT-LUKS2-d790164a67e94151a8abf36384dd7f1e-crypt_8tb1 -> ../../dm-7
lrwxrwxrwx 1 root root 11 May 13 20:39 md-name-tinybox.local:ssd_swap -> ../../md127
lrwxrwxrwx 1 root root 11 May 13 20:39 md-uuid-6871e77e:83b74962:50fe3c84:0d6f2054 -> ../../md127
lrwxrwxrwx 1 root root 13 May 13 20:39 nvme-Samsung_SSD_980_1TB_S649NX0T218393R -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-Samsung_SSD_980_1TB_S649NX0T218393R-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-Samsung_SSD_980_1TB_S649NX0T218393R-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-Samsung_SSD_980_1TB_S649NX0T218393R-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-Samsung_SSD_980_1TB_S649NX0T218393R-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 13 May 13 20:39 nvme-eui.002538d221b1850e -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-eui.002538d221b1850e-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-eui.002538d221b1850e-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-eui.002538d221b1850e-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 May 13 20:39 nvme-eui.002538d221b1850e-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 9 May 13 21:25 usb-Generic_MassStorageClass_000000001209-0:0 -> ../../sdl
lrwxrwxrwx 1 root root 9 May 13 21:25 usb-Generic_MassStorageClass_000000001209-0:1 -> ../../sdm
lrwxrwxrwx 1 root root 9 May 13 21:25 usb-Generic_MassStorageClass_000000001209-0:2 -> ../../sdn
lrwxrwxrwx 1 root root 9 May 13 21:25 usb-Generic_MassStorageClass_000000001209-0:3 -> ../../sdo
lrwxrwxrwx 1 root root 9 May 13 20:39 usb-PiKVM_CD-ROM_Drive_CAFEBABE-0:0 -> ../../sdh
lrwxrwxrwx 1 root root 9 May 13 21:06 usb-SATA_SSD_Ugreen_Storage_Device_20D11E806002-0:0 -> ../../sdi
lrwxrwxrwx 1 root root 10 May 13 21:06 usb-SATA_SSD_Ugreen_Storage_Device_20D11E806002-0:0-part1 -> ../../sdi1
lrwxrwxrwx 1 root root 10 May 13 21:06 usb-SATA_SSD_Ugreen_Storage_Device_20D11E806002-0:0-part2 -> ../../sdi2
lrwxrwxrwx 1 root root 10 May 13 21:06 usb-SATA_SSD_Ugreen_Storage_Device_20D11E806002-0:0-part3 -> ../../sdi3
lrwxrwxrwx 1 root root 9 May 13 21:28 usb-ST2000DL_003-9VT166_00000000c343027e00f1-0:0 -> ../../sdk
lrwxrwxrwx 1 root root 9 May 13 21:08 usb-Seagate_Desktop_NA7HJST4-0:0 -> ../../sdj
lrwxrwxrwx 1 root root 10 May 13 21:08 usb-Seagate_Desktop_NA7HJST4-0:0-part1 -> ../../sdj1
lrwxrwxrwx 1 root root 9 May 13 21:28 wwn-0x5000c50049653d15 -> ../../sdk
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5000c500b47ba8ae -> ../../sdf
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5000c500b47ba8ae-part1 -> ../../sdf1
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5000c500b47f37c3 -> ../../sdg
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5000c500b47f37c3-part1 -> ../../sdg1
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5000c500cf706b59 -> ../../sdd
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5000c500cf706b59-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5000c500ed2354a7 -> ../../sde
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5000c500ed2354a7-part1 -> ../../sde1
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5000c500f15ab494 -> ../../sda
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5000c500f15ab494-part1 -> ../../sda1
lrwxrwxrwx 1 root root 9 May 13 21:28 wwn-0x50014ee25dc0ee19 -> ../../sdc
lrwxrwxrwx 1 root root 9 May 13 20:39 wwn-0x5002538fc2219e4d -> ../../sdb
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5002538fc2219e4d-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5002538fc2219e4d-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5002538fc2219e4d-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 May 13 20:39 wwn-0x5002538fc2219e4d-part4 -> ../../sdb4
*********************** END /dev/disk/by-id
*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 May 13 20:39 11b06964-542d-4cba-b43f-56809c846d50 -> ../../sdg1
lrwxrwxrwx 1 root root 10 May 13 20:39 172dade2-d1c3-47ea-bbce-0655622b0bbf -> ../../sde1
lrwxrwxrwx 1 root root 10 May 13 20:39 1c9c3428-2622-4eb6-9bec-0b11650e88ef -> ../../dm-1
lrwxrwxrwx 1 root root 15 May 13 20:39 2ef006b2-262c-49b5-bac3-a51ddefcbfe6 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 10 May 13 21:06 505A-8772 -> ../../sdi1
lrwxrwxrwx 1 root root 11 May 13 20:39 65478109-a130-4e8d-a65d-cdbbcc91a946 -> ../../md127
lrwxrwxrwx 1 root root 15 May 13 20:39 69EB-FC18 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 10 May 13 20:39 707fed61-8803-485e-a28d-54b3b229be77 -> ../../sdb4
lrwxrwxrwx 1 root root 10 May 13 20:39 83A2-B5FB -> ../../sdb2
lrwxrwxrwx 1 root root 10 May 13 20:39 8523b7b4-cb06-42a2-b7a4-14d7fdb1e7c6 -> ../../dm-6
lrwxrwxrwx 1 root root 10 May 13 20:39 867A-4000 -> ../../sdb1
lrwxrwxrwx 1 root root 15 May 13 20:39 88A4-5CF9 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 10 May 13 20:39 8d2a575f-fab6-4d0d-aeb7-537b43581084 -> ../../sda1
lrwxrwxrwx 1 root root 10 May 13 20:39 904c1ede-e04b-4102-a982-2333af179474 -> ../../dm-2
lrwxrwxrwx 1 root root 10 May 13 21:06 9f96a7ad-a0ab-475f-b82e-e4af6fc9018a -> ../../sdi3
lrwxrwxrwx 1 root root 10 May 13 20:39 c1ad736c-f675-44ea-981e-3913b63e11e6 -> ../../sdd1
lrwxrwxrwx 1 root root 10 May 13 20:39 d790164a-67e9-4151-a8ab-f36384dd7f1e -> ../../sdf1
lrwxrwxrwx 1 root root 10 May 13 21:08 e115e907-08e4-4de1-aa30-b01129a5afc8 -> ../../sdj1
lrwxrwxrwx 1 root root 10 May 13 21:06 f3be8bf8-6a73-4167-9db1-316d377b6fae -> ../../sdi2
*********************** END /dev/disk/by-uuid
-- System Information:
Debian Release: 12.0
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 6.1.0-9-amd64 (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8), LANGUAGE=en_US.UTF-8
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages grub-efi-amd64-bin depends on:
ii grub-common 2.06-12
Versions of packages grub-efi-amd64-bin recommends:
ii efibootmgr 17-2
ii grub-efi-amd64-signed 1+2.06+12
grub-efi-amd64-bin suggests no packages.
-- no debconf information
More information about the Pkg-grub-devel
mailing list