Bug#1024247: grub-efi-amd64: conf_force_conffnew=YES in /etc/ucf.conf breaks grub-efi-amd64.postinst
Thomas Dorner
debian-bugs at th-dorner.de
Wed Nov 16 09:55:40 GMT 2022
Package: grub-efi-amd64
Version: 2.06-5
Severity: important
X-Debbugs-Cc: debian-bugs at th-dorner.de
Dear Maintainer,
/var/lib/dpkg/info/grub-efi-amd64.postinst failed with:
Setting up grub-efi-amd64 (2.06-5) ...
Error: Only one of force_conffold and force_conffnew should
be set
dpkg: error processing package grub-efi-amd64 (--configure):
installed grub-efi-amd64 package post-installation script subprocess returned error exit status 1
The problem is, that I have set "conf_force_conffnew=YES" in
/etc/ucf.conf and the post-install script itself sets in line 414
"ucf_env=UCF_FORCE_CONFFOLD=1".
I would expect that my decision would be honoured here. (This is a
similar bug to #1002038 in grub-pc, so maybe there are others as well?)
To reproduce it just set "conf_force_conffnew=YES" in /etc/ucf.conf and
run:
/usr/share/debconf/frontend /var/lib/dpkg/info/grub-efi-amd64.postinst configure
I was able to circumvent the problem by temporarily disable the option
in /etc/ucf.conf.
Best regards, Thomas
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/mapper/crypt_root / ext4 rw,relatime,discard,errors=remount-ro 0 0
/dev/sda3 /images ext4 rw,relatime,discard 0 0
/dev/sdb2 /boot ext2 rw,relatime,discard 0 0
/dev/sdb1 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/sdc6 /video ext4 rw,relatime 0 0
/dev/mapper/crypt_home /home ext4 rw,relatime,discard 0 0
/dev/mapper/crypt_goodies /goodies ext4 rw,relatime,discard 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
search --no-floppy --fs-uuid --set=root 720f3744-c999-4ee7-8010-73ef6072a334
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1920x1200x32
load_video
insmod gfxterm
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=3
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=3
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod ext2
search --no-floppy --fs-uuid --set=root 720f3744-c999-4ee7-8010-73ef6072a334
insmod png
if background_image /usr/share/desktop-base/homeworld-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=keep
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-4-amd64 ...'
linux /vmlinuz-6.0.0-4-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-4-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-720f3744-c999-4ee7-8010-73ef6072a334' {
menuentry 'Debian GNU/Linux, with Linux 6.0.0-4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-4-amd64-advanced-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-4-amd64 ...'
linux /vmlinuz-6.0.0-4-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-4-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.0.0-4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-4-amd64-recovery-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-4-amd64 ...'
linux /vmlinuz-6.0.0-4-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro single noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-4-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.0.0-3-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-3-amd64-advanced-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-3-amd64 ...'
linux /vmlinuz-6.0.0-3-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-3-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.0.0-3-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-3-amd64-recovery-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-3-amd64 ...'
linux /vmlinuz-6.0.0-3-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro single noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-3-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.0.0-2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-2-amd64-advanced-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-2-amd64 ...'
linux /vmlinuz-6.0.0-2-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.0-2-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.0.0-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.0.0-2-amd64-recovery-720f3744-c999-4ee7-8010-73ef6072a334' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 f6ffc231-eed2-49ef-b724-31af095cb129
else
search --no-floppy --fs-uuid --set=root f6ffc231-eed2-49ef-b724-31af095cb129
fi
echo 'Loading Linux 6.0.0-2-amd64 ...'
linux /vmlinuz-6.0.0-2-amd64 root=UUID=720f3744-c999-4ee7-8010-73ef6072a334 ro single noplymouth mitigations=off
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.0.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/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/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg
*********************** BEGIN /proc/mdstat
cat: /proc/mdstat: No such file or directory
*********************** END /proc/mdstat
*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 Nov 16 07:45 ata-HL-DT-ST_BD-RE_BH16NS55_K9LI3DG5922 -> ../../sr0
lrwxrwxrwx 1 root root 9 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513671D -> ../../sda
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513671D-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513671D-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513671D-part3 -> ../../sda3
lrwxrwxrwx 1 root root 9 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V -> ../../sdb
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Nov 16 09:44 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-Samsung_SSD_860_PRO_256GB_S45GNF0K513678V-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 9 Nov 16 07:45 ata-SanDisk_SD8SBBU120G1122_162987456512 -> ../../sdd
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-SanDisk_SD8SBBU120G1122_162987456512-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 9 Nov 16 07:45 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22 -> ../../sdc
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Nov 16 10:23 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Nov 16 10:31 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part3 -> ../../sdc3
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part4 -> ../../sdc4
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Nov 16 09:44 ata-WDC_WD30EZRZ-00GXCB0_WD-WCC7K6CFZX22-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-name-crypt_goodies -> ../../dm-2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-name-crypt_home -> ../../dm-1
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-name-crypt_root -> ../../dm-0
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-uuid-CRYPT-LUKS1-ca4ecbe6ca59450ba0802a28b9c1c5f0-crypt_home -> ../../dm-1
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-uuid-CRYPT-LUKS2-47f7e24ee4734350813929aef4461b0c-crypt_goodies -> ../../dm-2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 dm-uuid-CRYPT-LUKS2-5982f7e93b4b49ca9c1f003ffd2b910b-crypt_root -> ../../dm-0
lrwxrwxrwx 1 root root 9 Nov 16 07:45 wwn-0x50014ee263af16cb -> ../../sdc
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x50014ee263af16cb-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Nov 16 10:23 wwn-0x50014ee263af16cb-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Nov 16 10:31 wwn-0x50014ee263af16cb-part3 -> ../../sdc3
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x50014ee263af16cb-part4 -> ../../sdc4
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x50014ee263af16cb-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Nov 16 09:44 wwn-0x50014ee263af16cb-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 9 Nov 16 07:45 wwn-0x5001b444a4d8f69e -> ../../sdd
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5001b444a4d8f69e-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 9 Nov 16 07:45 wwn-0x5002538e404250db -> ../../sda
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250db-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250db-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 wwn-0x5002538e404250db-part3 -> ../../sda3
lrwxrwxrwx 1 root root 9 Nov 16 07:45 wwn-0x5002538e404250e7 -> ../../sdb
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250e7-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Nov 16 09:44 wwn-0x5002538e404250e7-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250e7-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250e7-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Nov 16 07:45 wwn-0x5002538e404250e7-part5 -> ../../sdb5
*********************** END /dev/disk/by-id
*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Nov 16 07:45 09ba9241-1c9b-46ef-bc6e-dfb16a4a6aca -> ../../sdb4
lrwxrwxrwx 1 root root 10 Nov 16 07:45 100e263e-685b-42ca-8abc-343c500dbf60 -> ../../sda1
lrwxrwxrwx 1 root root 10 Nov 16 10:23 1bd51fe7-05fb-49d4-ac86-b63dd5279012 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 2b9b0461-1a3b-43ee-8d3b-0aa7e574a813 -> ../../sda3
lrwxrwxrwx 1 root root 10 Nov 16 09:44 2c13e8ba-1b30-4309-9ca4-a6c055be66b1 -> ../../dm-1
lrwxrwxrwx 1 root root 10 Nov 16 10:31 2f6fbb41-58e8-4ac3-839a-d739ab5a4d40 -> ../../sdc3
lrwxrwxrwx 1 root root 10 Nov 16 09:44 40d0e740-39ea-457f-8f34-308cd3c672a3 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Nov 16 07:45 47f7e24e-e473-4350-8139-29aef4461b0c -> ../../sdd1
lrwxrwxrwx 1 root root 10 Nov 16 07:45 5982f7e9-3b4b-49ca-9c1f-003ffd2b910b -> ../../sdb3
lrwxrwxrwx 1 root root 10 Nov 16 07:45 5bf47eeb-4df4-4c32-9cae-6e724ba8b798 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Nov 16 07:45 6C82-F671 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Nov 16 09:44 720f3744-c999-4ee7-8010-73ef6072a334 -> ../../dm-0
lrwxrwxrwx 1 root root 10 Nov 16 07:45 B61E-FE04 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Nov 16 07:45 ca4ecbe6-ca59-450b-a080-2a28b9c1c5f0 -> ../../sda2
lrwxrwxrwx 1 root root 10 Nov 16 09:44 d037156c-226f-4572-b3f8-7e08b0e72088 -> ../../dm-2
lrwxrwxrwx 1 root root 10 Nov 16 07:45 e5266d6b-5adb-4e09-bfa3-6c4352725a14 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Nov 16 07:45 e82a791e-c850-4f0d-9db1-36d7daab8cdd -> ../../sdc4
lrwxrwxrwx 1 root root 10 Nov 16 09:44 f6ffc231-eed2-49ef-b724-31af095cb129 -> ../../sdb2
*********************** END /dev/disk/by-uuid
-- System Information:
Debian Release: bookworm/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 6.0.0-3-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_CPU_OUT_OF_SPEC
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages grub-efi-amd64 depends on:
ii debconf [debconf-2.0] 1.5.79
ii grub-common 2.06-5
ii grub-efi-amd64-bin 2.06-5
ii grub2-common 2.06-5
ii ucf 3.0043
grub-efi-amd64 recommends no packages.
grub-efi-amd64 suggests no packages.
-- debconf information excluded
More information about the Pkg-grub-devel
mailing list