Package: grub-efi-amd64
Version: 2.02+dfsg1-20+deb10u4
Severity: important
Tags: d-i

After a fresh install of debian buster a grub.cfg containing an outb command 
throws the error "outb command not found" (and, in my case, 
cannot start lightdm thereafter). This problem does not appear when downgrading 
all installed grub packages to version 
2.02+dfsg1-20+deb10u3. 

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/sdb4 / ext4 rw,relatime,errors=remount-ro 0 0
/dev/sdb9 /home ext4 rw,relatime 0 0
/dev/sdb5 /var ext4 rw,relatime 0 0
/dev/sdb2 /home/mac/macOS ext4 rw,relatime 0 0
/dev/sdb7 /tmp ext4 rw,relatime 0 0
/dev/sdb3 /boot/efi vfat 
rw,relatime,fmask=0077,dmask=0077,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 iorw
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
else
  search --no-floppy --fs-uuid --set=root fb7e40d6-bc1d-447c-b907-accd056dc7eb
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1440x900
  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 part_gpt
insmod ext2
set root='hd1,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
else
  search --no-floppy --fs-uuid --set=root fb7e40d6-bc1d-447c-b907-accd056dc7eb
fi
insmod png
if background_image 
/usr/share/desktop-base/futureprototype-theme/grub/grub-4x3.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-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
        load_video
        outb 0x728 1
        outb 0x710 2
        outb 0x740 2
        outb 0x750 0
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd1,gpt4'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
        else
          search --no-floppy --fs-uuid --set=root 
fb7e40d6-bc1d-447c-b907-accd056dc7eb
        fi
        echo    'Linux 4.19.0-16-amd64 wird geladen …'
        linux   /boot/vmlinuz-4.19.0-16-amd64 
root=UUID=fb7e40d6-bc1d-447c-b907-accd056dc7eb ro  quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
        echo    'Initiale Ramdisk wird geladen …'
        initrd  /boot/initrd.img-4.19.0-16-amd64
}
submenu 'Erweiterte Optionen für Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
        menuentry 'Debian GNU/Linux, mit Linux 4.19.0-16-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.19.0-16-amd64-advanced-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd1,gpt4'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                else
                  search --no-floppy --fs-uuid --set=root 
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                fi
                echo    'Linux 4.19.0-16-amd64 wird geladen …'
                linux   /boot/vmlinuz-4.19.0-16-amd64 
root=UUID=fb7e40d6-bc1d-447c-b907-accd056dc7eb ro  quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
                echo    'Initiale Ramdisk wird geladen …'
                initrd  /boot/initrd.img-4.19.0-16-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-16-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os 
$menuentry_id_option 
'gnulinux-4.19.0-16-amd64-recovery-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd1,gpt4'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                else
                  search --no-floppy --fs-uuid --set=root 
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                fi
                echo    'Linux 4.19.0-16-amd64 wird geladen …'
                linux   /boot/vmlinuz-4.19.0-16-amd64 
root=UUID=fb7e40d6-bc1d-447c-b907-accd056dc7eb ro single 
                echo    'Initiale Ramdisk wird geladen …'
                initrd  /boot/initrd.img-4.19.0-16-amd64
        }
        menuentry 'Debian GNU/Linux, mit Linux 4.19.0-11-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.19.0-11-amd64-advanced-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd1,gpt4'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                else
                  search --no-floppy --fs-uuid --set=root 
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                fi
                echo    'Linux 4.19.0-11-amd64 wird geladen …'
                linux   /boot/vmlinuz-4.19.0-11-amd64 
root=UUID=fb7e40d6-bc1d-447c-b907-accd056dc7eb ro  quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
                echo    'Initiale Ramdisk wird geladen …'
                initrd  /boot/initrd.img-4.19.0-11-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-11-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os 
$menuentry_id_option 
'gnulinux-4.19.0-11-amd64-recovery-fb7e40d6-bc1d-447c-b907-accd056dc7eb' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_gpt
                insmod ext2
                set root='hd1,gpt4'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 
--hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                else
                  search --no-floppy --fs-uuid --set=root 
fb7e40d6-bc1d-447c-b907-accd056dc7eb
                fi
                echo    'Linux 4.19.0-11-amd64 wird geladen …'
                linux   /boot/vmlinuz-4.19.0-11-amd64 
root=UUID=fb7e40d6-bc1d-447c-b907-accd056dc7eb ro single 
                echo    'Initiale Ramdisk wird geladen …'
                initrd  /boot/initrd.img-4.19.0-11-amd64
        }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/15_linux_sda ###
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os  'gnulinux-simple-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
        load_video
        outb 0x728 1
        outb 0x710 2
        outb 0x740 2
        outb 0x750 0
        insmod gzio
        if [ x = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt2'
        if [ x = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
d64727a5-ce33-4fd8-83be-f941be9779f9
        else
          search --no-floppy --fs-uuid --set=root 
d64727a5-ce33-4fd8-83be-f941be9779f9
        fi
        echo    'Loading Linux 4.19.0-16-amd64 ...'
        linux   /vmlinuz-4.19.0-16-amd64 root=/dev/mapper/caspiansea--vg-root 
ro  quiet splash i915.modeset=1 i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 
libata.force=noncq
        echo    'Loading initial ramdisk ...'
        initrd  /initrd.img-4.19.0-16-amd64
}
submenu 'Advanced options for Debian GNU/Linux'  
'gnulinux-advanced-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-16-amd64' --class debian 
--class gnu-linux --class gnu --class os  
'gnulinux-4.19.0-16-amd64-advanced-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x = xxen ]; then insmod xzio; insmod lzopio; fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt2'
                if [ x = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
d64727a5-ce33-4fd8-83be-f941be9779f9
                else
                  search --no-floppy --fs-uuid --set=root 
d64727a5-ce33-4fd8-83be-f941be9779f9
                fi
                echo    'Loading Linux 4.19.0-16-amd64 ...'
                linux   /vmlinuz-4.19.0-16-amd64 
root=/dev/mapper/caspiansea--vg-root ro  quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-16-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-16-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os  
'gnulinux-4.19.0-16-amd64-recovery-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x = xxen ]; then insmod xzio; insmod lzopio; fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt2'
                if [ x = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
d64727a5-ce33-4fd8-83be-f941be9779f9
                else
                  search --no-floppy --fs-uuid --set=root 
d64727a5-ce33-4fd8-83be-f941be9779f9
                fi
                echo    'Loading Linux 4.19.0-16-amd64 ...'
                linux   /vmlinuz-4.19.0-16-amd64 
root=/dev/mapper/caspiansea--vg-root ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-16-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-14-amd64' --class debian 
--class gnu-linux --class gnu --class os  
'gnulinux-4.19.0-14-amd64-advanced-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x = xxen ]; then insmod xzio; insmod lzopio; fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt2'
                if [ x = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
d64727a5-ce33-4fd8-83be-f941be9779f9
                else
                  search --no-floppy --fs-uuid --set=root 
d64727a5-ce33-4fd8-83be-f941be9779f9
                fi
                echo    'Loading Linux 4.19.0-14-amd64 ...'
                linux   /vmlinuz-4.19.0-14-amd64 
root=/dev/mapper/caspiansea--vg-root ro  quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-14-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.19.0-14-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os  
'gnulinux-4.19.0-14-amd64-recovery-e78fa255-2ca7-4d0b-a72e-ab2c6f4d3ea7' {
                load_video
                outb 0x728 1
                outb 0x710 2
                outb 0x740 2
                outb 0x750 0
                insmod gzio
                if [ x = xxen ]; then insmod xzio; insmod lzopio; fi
                insmod part_gpt
                insmod ext2
                set root='hd0,gpt2'
                if [ x = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 
--hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  
d64727a5-ce33-4fd8-83be-f941be9779f9
                else
                  search --no-floppy --fs-uuid --set=root 
d64727a5-ce33-4fd8-83be-f941be9779f9
                fi
                echo    'Loading Linux 4.19.0-14-amd64 ...'
                linux   /vmlinuz-4.19.0-14-amd64 
root=/dev/mapper/caspiansea--vg-root ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /initrd.img-4.19.0-14-amd64
        }
}
### END /etc/grub.d/15_linux_sda ###

### 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 ###
### 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 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC -> 
../../sdb
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part1 -> 
../../sdb1
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part2 -> 
../../sdb2
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part3 -> 
../../sdb3
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part4 -> 
../../sdb4
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part5 -> 
../../sdb5
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part6 -> 
../../sdb6
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part7 -> 
../../sdb7
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part8 -> 
../../sdb8
lrwxrwxrwx 1 root root 10 May 20 17:54 ata-ST750LX003-1AC154_W200LVNC-part9 -> 
../../sdb9
lrwxrwxrwx 1 root root  9 May 20 17:54 
ata-Samsung_SSD_850_EVO_250GB_S21PNSBG104291J -> ../../sda
lrwxrwxrwx 1 root root 10 May 20 17:54 
ata-Samsung_SSD_850_EVO_250GB_S21PNSBG104291J-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 May 20 17:54 
ata-Samsung_SSD_850_EVO_250GB_S21PNSBG104291J-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 May 20 17:54 
ata-Samsung_SSD_850_EVO_250GB_S21PNSBG104291J-part3 -> ../../sda3
lrwxrwxrwx 1 root root  9 May 20 17:54 wwn-0x5000c5005e0519c3 -> ../../sdb
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part1 -> 
../../sdb1
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part2 -> 
../../sdb2
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part3 -> 
../../sdb3
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part4 -> 
../../sdb4
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part5 -> 
../../sdb5
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part6 -> 
../../sdb6
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part7 -> 
../../sdb7
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part8 -> 
../../sdb8
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5000c5005e0519c3-part9 -> 
../../sdb9
lrwxrwxrwx 1 root root  9 May 20 17:54 wwn-0x5002538da014e727 -> ../../sda
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5002538da014e727-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5002538da014e727-part2 -> 
../../sda2
lrwxrwxrwx 1 root root 10 May 20 17:54 wwn-0x5002538da014e727-part3 -> 
../../sda3
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 May 20 17:54 18190bfb-e5e9-44dc-a705-eed694fe15d7 -> 
../../sdb2
lrwxrwxrwx 1 root root 10 May 20 17:54 1ad465c9-5bf4-4430-81e9-4c54230c7347 -> 
../../sda3
lrwxrwxrwx 1 root root 10 May 20 17:54 65f560ce-4cc0-4bb5-ab3b-f778f202311f -> 
../../sdb5
lrwxrwxrwx 1 root root 10 May 20 17:54 7703-6332 -> ../../sdb3
lrwxrwxrwx 1 root root 10 May 20 17:54 96f7b45d-6ab5-466e-a9ab-9ff00774969d -> 
../../sdb1
lrwxrwxrwx 1 root root 10 May 20 17:54 AAC3-4131 -> ../../sda1
lrwxrwxrwx 1 root root 10 May 20 17:54 a9099464-4d25-46db-b0d7-644e80bc0b6e -> 
../../sdb9
lrwxrwxrwx 1 root root 10 May 20 17:54 c2042193-840f-435e-bed9-0d6124d177fb -> 
../../sdb6
lrwxrwxrwx 1 root root 10 May 20 17:54 d64727a5-ce33-4fd8-83be-f941be9779f9 -> 
../../sda2
lrwxrwxrwx 1 root root 10 May 20 17:54 ec399a4d-88e9-4726-a2ed-f3a8b79d64ae -> 
../../sdb8
lrwxrwxrwx 1 root root 10 May 20 17:54 f5dadcf2-715a-4be4-92c4-d9ce10035a8a -> 
../../sdb7
lrwxrwxrwx 1 root root 10 May 20 17:54 fb7e40d6-bc1d-447c-b907-accd056dc7eb -> 
../../sdb4
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: 10.9
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-16-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_USER, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE= 
(charmap=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 depends on:
ii  debconf [debconf-2.0]  1.5.71
hi  grub-common            2.02+dfsg1-20+deb10u3
hi  grub-efi-amd64-bin     2.02+dfsg1-20+deb10u3
hi  grub2-common           2.02+dfsg1-20+deb10u3
ii  ucf                    3.0038+nmu1

grub-efi-amd64 recommends no packages.

grub-efi-amd64 suggests no packages.

-- debconf information:
* grub2/linux_cmdline_default: quiet splash i915.modeset=1 
i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 libata.force=noncq
  grub2/kfreebsd_cmdline_default: quiet
  grub2/force_efi_extra_removable: false
* grub2/linux_cmdline:
  grub2/update_nvram: true
  grub2/kfreebsd_cmdline:

Reply via email to