Your message dated Thu, 09 Feb 2023 01:49:32 +0000
with message-id <[email protected]>
and subject line Bug#1016737: fixed in grub2 2.06-8
has caused the Debian Bug report #1016737,
regarding Loop in POST when using --removable option in grub-install
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1016737: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016737
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-efi-amd64
Version: 2.04-20
Severity: normal
X-Debbugs-Cc: none

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

I run grub-install --target=x86_64-efi --efi-directory=/boot/efi --removable and reboot, it repeats POST forever and loops.
This bug does not occur on Arch Linux, so it appears to be Debian-specific.

*** End of the template - remove these template lines ***


-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/sda2 / ext4 rw,relatime,errors=remount-ro 0 0
/dev/sda1 /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 ###
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='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 4ac6e20f-f814-426a-9de9-b33d490010a6
else
  search --no-floppy --fs-uuid --set=root 4ac6e20f-f814-426a-9de9-b33d490010a6
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  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=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='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 4ac6e20f-f814-426a-9de9-b33d490010a6
else
  search --no-floppy --fs-uuid --set=root 4ac6e20f-f814-426a-9de9-b33d490010a6
fi
insmod png
if background_image /usr/share/desktop-base/homeworld-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-4ac6e20f-f814-426a-9de9-b33d490010a6' {
    load_video
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 4ac6e20f-f814-426a-9de9-b33d490010a6
    else
      search --no-floppy --fs-uuid --set=root 4ac6e20f-f814-426a-9de9-b33d490010a6
    fi
    echo    'Loading Linux 5.10.0-16-amd64 ...'
    linux    /boot/vmlinuz-5.10.0-16-amd64 root=UUID=4ac6e20f-f814-426a-9de9-b33d490010a6 ro  quiet
    echo    'Loading initial ramdisk ...'
    initrd    /boot/initrd.img-5.10.0-16-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-4ac6e20f-f814-426a-9de9-b33d490010a6' {     menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-advanced-4ac6e20f-f814-426a-9de9-b33d490010a6' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt2'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  4ac6e20f-f814-426a-9de9-b33d490010a6
        else
          search --no-floppy --fs-uuid --set=root 4ac6e20f-f814-426a-9de9-b33d490010a6
        fi
        echo    'Loading Linux 5.10.0-16-amd64 ...'
        linux    /boot/vmlinuz-5.10.0-16-amd64 root=UUID=4ac6e20f-f814-426a-9de9-b33d490010a6 ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-16-amd64
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-16-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-16-amd64-recovery-4ac6e20f-f814-426a-9de9-b33d490010a6' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt2'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  4ac6e20f-f814-426a-9de9-b33d490010a6
        else
          search --no-floppy --fs-uuid --set=root 4ac6e20f-f814-426a-9de9-b33d490010a6
        fi
        echo    'Loading Linux 5.10.0-16-amd64 ...'
        linux    /boot/vmlinuz-5.10.0-16-amd64 root=UUID=4ac6e20f-f814-426a-9de9-b33d490010a6 ro single
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-16-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 'System setup' $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 Aug  6 22:25 ata-VBOX_CD-ROM_VB1-1a2b3c4d -> ../../sr0 lrwxrwxrwx 1 root root  9 Aug  6 22:25 ata-VBOX_HARDDISK_VBf02f7c82-0f8f5104 -> ../../sda lrwxrwxrwx 1 root root 10 Aug  6 22:25 ata-VBOX_HARDDISK_VBf02f7c82-0f8f5104-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Aug  6 22:25 ata-VBOX_HARDDISK_VBf02f7c82-0f8f5104-part2 -> ../../sda2
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root  9 Aug  6 22:25 2022-07-19-21-57-51-86 -> ../../sr0
lrwxrwxrwx 1 root root 10 Aug  6 22:25 4ac6e20f-f814-426a-9de9-b33d490010a6 -> ../../sda2
lrwxrwxrwx 1 root root 10 Aug  6 22:25 7DB4-73E1 -> ../../sda1
*********************** END /dev/disk/by-uuid

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

Kernel: Linux 5.10.0-16-amd64 (SMP w/2 CPU threads)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.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-efi-amd64 depends on:
ii  debconf [debconf-2.0]  1.5.77
ii  grub-common            2.04-20
ii  grub-efi-amd64-bin     2.04-20
ii  grub2-common           2.04-20
ii  ucf                    3.0043

grub-efi-amd64 recommends no packages.

grub-efi-amd64 suggests no packages.

-- debconf information:
* grub2/linux_cmdline:
* grub2/linux_cmdline_default: quiet
  grub2/force_efi_extra_removable: false
  grub2/kfreebsd_cmdline:
  grub2/kfreebsd_cmdline_default: quiet
  grub2/update_nvram: true
Thank you for using reportbug

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.06-8
Done: Steve McIntyre <[email protected]>

We believe that the bug you reported is fixed in the latest version of
grub2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steve McIntyre <[email protected]> (supplier of updated grub2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 09 Feb 2023 01:09:00 +0000
Source: grub2
Architecture: source
Version: 2.06-8
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Steve McIntyre <[email protected]>
Closes: 1001414 1016737 1021846 1022184 1026092 1026915 1030846
Changes:
 grub2 (2.06-8) unstable; urgency=medium
 .
   [ Steve McIntyre ]
   * Fix an issue in an f2fs security fix which caused mount
     failures. Closes: #1021846. Thanks to программист некто for helping
     to debug the problem!
   * Switch build-deps from gcc-10 to gcc-12. Closes: #1022184
   * Include upstream patch to enable EFI zboot support on arm64.
     Closes: #1026092
   * grub-mkconfig: Restore umask for the grub.cfg. CVE-2021-3981
     Closes: #1001414
   * postinst: be more verbose when using grub-install to install onto
     devices.
   * /etc/default/grub: Fix comment about text-mode console.
     Fixes #845683
   * grub-install: Don't install the shim fallback program when called
     with --removable. Closes: #1016737
   * grub-install: Don't use our grub CD EFI image for --removable.
     Closes: #1026915. Thanks to Pascal Hambourg for the patch.
   * Ignore some new ext2 flags to stay compatible with latest mke2fs
     defaults. Closes: #1030846
 .
   [ Colin Watson ]
   * Remove myself from Uploaders.
Checksums-Sha1:
 234753e3ff9b53eff02161d83d6e177ac2bea2ed 7057 grub2_2.06-8.dsc
 1770e37881e16a8b08ecc321fd3d4b50eca0f771 1101464 grub2_2.06-8.debian.tar.xz
 d3e91594aa51d1aea8516811810d2769708e5619 13110 grub2_2.06-8_source.buildinfo
Checksums-Sha256:
 a466fccc73504ea37c08837eeaa7a541e8ea4745447eb497482a66c81a5c87de 7057 
grub2_2.06-8.dsc
 d16aa0de7efa01a7c6fa6982b233cd1943163bb4a6502f29a039f75387494c52 1101464 
grub2_2.06-8.debian.tar.xz
 3b8af19ce295e23fc048a887f2449dfbd6f2de761865a87d3e0c3bc43f1d41c8 13110 
grub2_2.06-8_source.buildinfo
Files:
 40d4cb35d00c64655f6b49d5f53024f8 7057 admin optional grub2_2.06-8.dsc
 42b799b299def7faacd651b78637ab2f 1101464 admin optional 
grub2_2.06-8.debian.tar.xz
 41eaddffeaca3810c78a52db342d1a9f 13110 admin optional 
grub2_2.06-8_source.buildinfo

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

iQJFBAEBCAAvFiEEzrtSMB1hfpEDkP4WWHl5VzRCaE4FAmPkTaQRHDkzc2FtQGRl
Ymlhbi5vcmcACgkQWHl5VzRCaE6/LBAAlUiw6/cPFU8fIq6szxJ4rJjNjUNPdpz1
WKTY1ewjqiLg75dTuWdZeLB6rHFeC6uWXw+P/zy3P9x95PScQ6g8AgeIDaHlBL6W
m2Cy9zYpAPSBzC5mHaAjqis7YOBUUiRm7URIURrq1SODYP86w0jVP0ow5wM4PoBA
ERkkhsWUG6ZSC5lW1nGuPo30k+lrB5euBe6xYwyssFg7h+frDdx1QEIKA2Ta3fS1
aiZEM9FBIART++7Bjv1AIcjqUeRqgz3Wan6GLvtf6IJ4lYtliP39LwELgCDf43o2
6UK2/9uJ/WB5L/F1lx/kVA07+H/icXO2WVYWFLKjzLouclQFaRg3JDj69BAjr+o0
8xpafGa++WH8ItICFx/xmiyOWbQo2jUYonjk/4sd2jaIDHueLj9KszwC1KtSsuTJ
YYpjMitUf7vH+LSWztTdJ+DSPuql4my1Y+nTUBnO5T4qOXjLuiRWP6mNLHBYZfgM
r8PQLSQ2rDKBohUk9kslcchT38tx9CHLBQvwkHSu8lnQ7tAZXYtPVbHyyJrcu5Te
wO1HgnZsgRuJNZQwa6Jk/T6MnivAIZkqaz+8BoaknrbHmUeyGnslSINL7vxYxxe+
kMWdXGyGgf4JbS7f6nOvEg3EB/le9cEP/H/MRtRYtvsrEMiptdOa5B68Gy3+g7/F
FzZ5po4425c=
=CS7I
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to