Bug#1135137: upgrade-reports: Bookworm -> Trixie mdadm raid EFI not updated on both disks
Thorsten Behrens
tbehrens at outlook.com
Tue Apr 28 08:16:07 BST 2026
Package: grub-efi-amd64
Version: 2.12-9+deb13u1
Severity: important
X-Debbugs-Cc: tbehrens at outlook.com
Dear Maintainer,
* What led up to the situation?
On a fresh install of Debian 12, on an OVH baremetal machine with mdadm
raid-0, I upgraded to Debian 13. After upgrade, grub in EFI had been
upgraded in one drive, but not the other.
I can reproduce this, and the drive that does get upgraded appears to be
somewhat random.
If the partition that's mounted to /boot/efi misses the upgrade, the system
will fail to boot and end up in BIOS, from where EFI shell can be accessed.
I have a `script` of the upgrade and will attempt to upload it. I did
not see anything jump out of me there.
To investigate, I used `strings` and mounted the second EFI partition to
`/mnt/second-efi`
Before upgrade, both partitions have grub 2.06, as expected:
```
$ strings /boot/efi/EFI/debian/grubx64.efi | grep -i grub | tail -6
source $prefix/grub.cfg
source $cmdpath/grub.cfg
normal (memdisk)/grub.cfg
grub,4,Free Software Foundation,grub,2.06,https://www.gnu.org/software/grub/
grub.debian,4,Debian,grub2,2.06-13+deb12u1,https://tracker.debian.org/pkg/grub2
&Debian Secure Boot Signer 2022 - grub20
$ strings /mnt/second-efi/EFI/debian/grubx64.efi | grep -i grub | tail -6
source $prefix/grub.cfg
source $cmdpath/grub.cfg
normal (memdisk)/grub.cfg
grub,4,Free Software Foundation,grub,2.06,https://www.gnu.org/software/grub/
grub.debian,4,Debian,grub2,2.06-13+deb12u1,https://tracker.debian.org/pkg/grub2
&Debian Secure Boot Signer 2022 - grub20
```
Now run an upgrade as per release notes, do not yet reboot, and check
again. Only one partition has the upgraded grub 2.12
```
$ strings /boot/efi/EFI/debian/grubx64.efi | grep -i grub | tail -6
grub_diskfilter_read_node
grub,5,Free Software Foundation,grub,2.12,https://www.gnu.org/software/grub/
grub.debian,5,Debian,grub2,2.12-9+deb13u1,https://tracker.debian.org/pkg/grub2
grub.debian13,1,Debian,grub2,2.12-9+deb13u1,https://tracker.debian.org/pkg/grub2
grub.peimage,2,Canonical,grub2,2.12-9+deb13u1,https://salsa.debian.org/grub-team/grub/-/blob/master/debian/patches/secure-boot/efi-use-peimage-shim.patch
&Debian Secure Boot Signer 2022 - grub20
$ strings /mnt/second-efi/EFI/debian/grubx64.efi | grep -i grub | tail -6
source $prefix/grub.cfg
source $cmdpath/grub.cfg
normal (memdisk)/grub.cfg
grub,4,Free Software Foundation,grub,2.06,https://www.gnu.org/software/grub/
grub.debian,4,Debian,grub2,2.06-13+deb12u1,https://tracker.debian.org/pkg/grub2
&Debian Secure Boot Signer 2022 - grub20
```
If `/boot/efi` were old, I'd expect `reboot` to fail here
Manually upgrade the old EFI and verify
```
$ sudo grub-install --target=x86_64-efi --efi-directory=/mnt/second-efi --bootloader-id=debian
$ strings /mnt/second-efi/EFI/debian/grubx64.efi | grep -i grub | tail -6
grub_diskfilter_read_node
grub,5,Free Software Foundation,grub,2.12,https://www.gnu.org/software/grub/
grub.debian,5,Debian,grub2,2.12-9+deb13u1,https://tracker.debian.org/pkg/grub2
grub.debian13,1,Debian,grub2,2.12-9+deb13u1,https://tracker.debian.org/pkg/grub2
grub.peimage,2,Canonical,grub2,2.12-9+deb13u1,https://salsa.debian.org/grub-team/grub/-/blob/master/debian/patches/secure-boot/efi-use-peimage-shim.patch
&Debian Secure Boot Signer 2022 - grub20
```
This resolves the issue.
**Desired behavior**
Upgrade via `sudo apt dist-upgrade` upgrades all EFI partitions in an
mdadm raid setup.
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/md3 / ext4 rw,relatime,stripe=256 0 0
/dev/md2 /boot ext4 rw,relatime 0 0
/dev/nvme0n1p1 /boot/efi 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 ###
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
}
serial --unit=0 --speed=115200 --parity=no --word=8
terminal_input console serial
terminal_output console serial
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=0
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=0
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
}
set linux_gfx_mode=text
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod diskfilter
insmod mdraid1x
insmod ext2
set root='mduuid/0040622cc2b73e8005576cbf3a530956'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/0040622cc2b73e8005576cbf3a530956' 465ec8f4-a600-4d21-97f7-393f84462c62
else
search --no-floppy --fs-uuid --set=root 465ec8f4-a600-4d21-97f7-393f84462c62
fi
echo 'Loading Linux 6.12.74+deb13+1-amd64 ...'
linux /vmlinuz-6.12.74+deb13+1-amd64 root=UUID=3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 ro nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.12.74+deb13+1-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
menuentry 'Debian GNU/Linux, with Linux 6.12.74+deb13+1-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.74+deb13+1-amd64-advanced-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod diskfilter
insmod mdraid1x
insmod ext2
set root='mduuid/0040622cc2b73e8005576cbf3a530956'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/0040622cc2b73e8005576cbf3a530956' 465ec8f4-a600-4d21-97f7-393f84462c62
else
search --no-floppy --fs-uuid --set=root 465ec8f4-a600-4d21-97f7-393f84462c62
fi
echo 'Loading Linux 6.12.74+deb13+1-amd64 ...'
linux /vmlinuz-6.12.74+deb13+1-amd64 root=UUID=3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 ro nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.12.74+deb13+1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.12.74+deb13+1-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.74+deb13+1-amd64-recovery-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod diskfilter
insmod mdraid1x
insmod ext2
set root='mduuid/0040622cc2b73e8005576cbf3a530956'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/0040622cc2b73e8005576cbf3a530956' 465ec8f4-a600-4d21-97f7-393f84462c62
else
search --no-floppy --fs-uuid --set=root 465ec8f4-a600-4d21-97f7-393f84462c62
fi
echo 'Loading Linux 6.12.74+deb13+1-amd64 ...'
linux /vmlinuz-6.12.74+deb13+1-amd64 root=UUID=3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 ro single dis_ucode_ldr nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.12.74+deb13+1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.1.0-44-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-44-amd64-advanced-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod diskfilter
insmod mdraid1x
insmod ext2
set root='mduuid/0040622cc2b73e8005576cbf3a530956'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/0040622cc2b73e8005576cbf3a530956' 465ec8f4-a600-4d21-97f7-393f84462c62
else
search --no-floppy --fs-uuid --set=root 465ec8f4-a600-4d21-97f7-393f84462c62
fi
echo 'Loading Linux 6.1.0-44-amd64 ...'
linux /vmlinuz-6.1.0-44-amd64 root=UUID=3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 ro nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.1.0-44-amd64
}
menuentry 'Debian GNU/Linux, with Linux 6.1.0-44-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-44-amd64-recovery-3d48cfa7-42b3-4f55-9ccd-fa722b63cb20' {
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod part_gpt
insmod diskfilter
insmod mdraid1x
insmod ext2
set root='mduuid/0040622cc2b73e8005576cbf3a530956'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint='mduuid/0040622cc2b73e8005576cbf3a530956' 465ec8f4-a600-4d21-97f7-393f84462c62
else
search --no-floppy --fs-uuid --set=root 465ec8f4-a600-4d21-97f7-393f84462c62
fi
echo 'Loading Linux 6.1.0-44-amd64 ...'
linux /vmlinuz-6.1.0-44-amd64 root=UUID=3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 ro single dis_ucode_ldr nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
echo 'Loading initial ramdisk ...'
initrd /initrd.img-6.1.0-44-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/25_bli ###
if [ "$grub_platform" = "efi" ]; then
insmod bli
fi
### END /etc/grub.d/25_bli ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
fwsetup --is-supported
if [ "$?" = 0 ]; then
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
fi
fi
### 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 : [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
md2 : active raid1 nvme0n1p2[0] nvme1n1p2[1]
1046528 blocks super 1.2 [2/2] [UU]
bitmap: 0/1 pages [0KB], 65536KB chunk
md3 : active raid0 nvme0n1p3[0] nvme1n1p3[1]
995751936 blocks super 1.2 512k chunks
unused devices: <none>
*********************** END /proc/mdstat
*********************** BEGIN LVM
*********************** END LVM
*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 Apr 28 06:38 md-name-md2 -> ../../md2
lrwxrwxrwx 1 root root 9 Apr 28 06:38 md-name-md3 -> ../../md3
lrwxrwxrwx 1 root root 9 Apr 28 06:38 md-uuid-0040622c:c2b73e80:05576cbf:3a530956 -> ../../md2
lrwxrwxrwx 1 root root 9 Apr 28 06:38 md-uuid-45412047:183fcc1c:3d09a4ec:059efac6 -> ../../md3
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870 -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870-part5 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1 -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901870_1-part5 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883 -> ../../nvme1n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883-part1 -> ../../nvme1n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883-part2 -> ../../nvme1n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883-part3 -> ../../nvme1n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883-part4 -> ../../nvme1n1p4
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883_1 -> ../../nvme1n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883_1-part1 -> ../../nvme1n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883_1-part2 -> ../../nvme1n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883_1-part3 -> ../../nvme1n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-SAMSUNG_MZVL2512HCJQ-00B07_S63CNX0Y901883_1-part4 -> ../../nvme1n1p4
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-eui.002538b951b21948 -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21948-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21948-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21948-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21948-part4 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21948-part5 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root 13 Apr 28 06:38 nvme-eui.002538b951b21955 -> ../../nvme1n1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21955-part1 -> ../../nvme1n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21955-part2 -> ../../nvme1n1p2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21955-part3 -> ../../nvme1n1p3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 nvme-eui.002538b951b21955-part4 -> ../../nvme1n1p4
*********************** END /dev/disk/by-id
*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 15 Apr 28 06:38 2026-04-28-06-07-28-00 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root 9 Apr 28 06:38 3d48cfa7-42b3-4f55-9ccd-fa722b63cb20 -> ../../md3
lrwxrwxrwx 1 root root 15 Apr 28 06:38 3e51940c-41cc-49db-b57b-0150967d56a7 -> ../../nvme0n1p4
lrwxrwxrwx 1 root root 9 Apr 28 06:38 465ec8f4-a600-4d21-97f7-393f84462c62 -> ../../md2
lrwxrwxrwx 1 root root 15 Apr 28 06:38 4c29b549-c4c6-47a5-843b-be97f89b6b77 -> ../../nvme1n1p4
lrwxrwxrwx 1 root root 15 Apr 28 06:38 E91C-9CC9 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Apr 28 06:38 E92A-3BA5 -> ../../nvme1n1p1
*********************** END /dev/disk/by-uuid
-- System Information:
Debian Release: 13.4
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 6.12.74+deb13+1-amd64 (SMP w/12 CPU threads; PREEMPT)
Locale: LANG=C.UTF-8, LC_CTYPE=C.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.91
ii grub-efi-amd64-bin 2.12-9+deb13u1
ii grub2-common 2.12-9+deb13u1
ii ucf 3.0052
grub-efi-amd64 recommends no packages.
grub-efi-amd64 suggests no packages.
-- debconf information:
* grub2/update_nvram: false
grub2/linux_cmdline: nomodeset iommu=pt console=tty0 console=ttyS0,115200n8
grub2/linux_cmdline_default:
grub2/force_efi_extra_removable: false
grub2/kfreebsd_cmdline:
grub2/enable_os_prober: false
grub2/kfreebsd_cmdline_default: quiet
More information about the Pkg-grub-devel
mailing list