• Bug#1104197: grub-pc: Trixie update-grub produces double "GNU/Linux" in

    From =?utf-8?q?Martin-=C3=89ric_Racine?=@21:1/5 to All on Sun Apr 27 09:40:01 2025
    Package: grub-pc
    Version: 2.12-7
    Severity: normal
    X-Debbugs-Cc: martin-eric.racine@iki.fi

    Since Trixie, the recipe used to produce menu entries results in a superfluous occurance of "GNU/Linux" in the menu e.g.

    Debian GNU/Linux GNU/Linux, with Linux 6.1.0-33-686-pae

    This should obviously be:

    Debian GNU/Linux, with Linux 6.1.0-33-686-pae


    -- Package-specific info:

    *********************** BEGIN /proc/mounts
    /dev/sda3 / ext4 rw,relatime,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_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42 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_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42 fi
    insmod png
    if background_image /usr/share/desktop-base/emerald-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=keep
    export linux_gfx_mode
    menuentry 'Debian GNU/Linux GNU/Linux, with Linux 6.1.0-33-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-33-686-pae-advanced-72082e70-8522-4075-a455-13034598de42' {
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    echo 'Loading Linux 6.1.0-33-686-pae ...'
    linux /boot/vmlinuz-6.1.0-33-686-pae root=UUID=72082e70-8522-4075-a455-13034598de42 ro panic=15 quiet loglevel=3 nosplash
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-6.1.0-33-686-pae
    }
    menuentry 'Debian GNU/Linux GNU/Linux, with Linux 6.1.0-33-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-33-686-pae-recovery-72082e70-8522-4075-a455-13034598de42' {
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    echo 'Loading Linux 6.1.0-33-686-pae ...'
    linux /boot/vmlinuz-6.1.0-33-686-pae root=UUID=72082e70-8522-4075-a455-13034598de42 ro single dis_ucode_ldr panic=15
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-6.1.0-33-686-pae
    }
    menuentry 'Debian GNU/Linux GNU/Linux, with Linux 6.1.0-32-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-32-686-pae-advanced-72082e70-8522-4075-a455-13034598de42' {
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    echo 'Loading Linux 6.1.0-32-686-pae ...'
    linux /boot/vmlinuz-6.1.0-32-686-pae root=UUID=72082e70-8522-4075-a455-13034598de42 ro panic=15 quiet loglevel=3 nosplash
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-6.1.0-32-686-pae
    }
    menuentry 'Debian GNU/Linux GNU/Linux, with Linux 6.1.0-32-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.0-32-686-pae-recovery-72082e70-8522-4075-a455-13034598de42' {
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    echo 'Loading Linux 6.1.0-32-686-pae ...'
    linux /boot/vmlinuz-6.1.0-32-686-pae root=UUID=72082e70-8522-4075-a455-13034598de42 ro single dis_ucode_ldr panic=15
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-6.1.0-32-686-pae
    }

    ### 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_memtest86+ ###
    if [ "$grub_platform" = efi -a "$grub_cpu" = x86_64 ]; then
    menuentry "Memory test (memtest86+x64.efi)" --class memtest $menuentry_id_option "memtest86+" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+x64.efi
    }
    menuentry "Memory test (memtest86+x64.efi, serial console)" --class memtest $menuentry_id_option "memtest86+-serial" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+x64.efi console=ttyS0,115200
    }
    fi
    if [ "$grub_platform" = efi -a "$grub_cpu" = i386 ]; then
    menuentry "Memory test (memtest86+ia32.efi)" --class memtest $menuentry_id_option "memtest86+" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+ia32.efi
    }
    menuentry "Memory test (memtest86+ia32.efi, serial console)" --class memtest $menuentry_id_option "memtest86+-serial" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+ia32.efi console=ttyS0,115200
    }
    fi
    if [ "$grub_platform" = pc ]; then if cpuid -l ; then
    menuentry "Memory test (memtest86+x64.bin)" --class memtest $menuentry_id_option "memtest86+" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+x64.bin
    }
    menuentry "Memory test (memtest86+x64.bin, serial console)" --class memtest $menuentry_id_option "memtest86+-serial" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+x64.bin console=ttyS0,115200
    }
    fi ; fi
    if [ "$grub_platform" = pc ]; then if ! cpuid -l ; then
    menuentry "Memory test (memtest86+ia32.bin)" --class memtest $menuentry_id_option "memtest86+" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+ia32.bin
    }
    menuentry "Memory test (memtest86+ia32.bin, serial console)" --class memtest $menuentry_id_option "memtest86+-serial" {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos3' --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 72082e70-8522-4075-a455-13034598de42
    else
    search --no-floppy --fs-uuid --set=root 72082e70-8522-4075-a455-13034598de42
    fi
    linux /boot/memtest86+ia32.bin console=ttyS0,115200
    }
    fi ; fi
    ### END /etc/grub.d/20_memtest86+ ###

    ### 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/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.
    echo "Found Debian GNU/Hurd"
    menuentry "Debian GNU/Hurd, with Mach" {
    set root='hd0,msdos1'
    echo 'Loading GNU Mach ...'
    multiboot /boot/gnumach.gz root=device:hd0s1
    echo 'Loading the Hurd ...'
    module /hurd/pci-arbiter.static pci-arbiter \
    --host-priv-port='${host-port}' --device-master-port='${device-port}' \
    --next-task='${acpi-task}' \
    '$(pci-task=task-create)' '$(task-resume)'
    module /hurd/acpi.static acpi \
    --next-task='${disk-task}' \
    '$(acpi-task=task-create)'
    module /hurd/rumpdisk.static rumpdisk \
    --next-task='${fs-task}' \
    '$(disk-task=task-create)'
    module /hurd/ext2fs.static ext2fs \
    --multiboot-command-line='${kernel-command-line}' \
    --exec-server-task='${exec-task}' -T typed '${root}' \
    '$(fs-task=task-create)'
    module /hurd/exec.static exec '$(exec-task=task-create)'
    }
    menuentry "Debian GNU/Hurd, with Mach (recovery mode)" {
    set root='hd0,msdos1'
    echo 'Loading GNU Mach ...'
    multiboot /boot/gnumach.gz root=device:hd0s1 -s
    echo 'Loading the Hurd ...'
    module /hurd/pci-arbiter.static pci-arbiter \
    --host-priv-port='${host-port}' --device-master-port='${device-port}' \
    --next-task='${acpi-task}' \
    '$(pci-task=task-create)' '$(task-resume)'
    module /hurd/acpi.static acpi \
    --next-task='${disk-task}' \
    '$(acpi-task=task-create)'
    module /hurd/rumpdisk.static rumpdisk \
    --next-task='${fs-task}' \
    '$(disk-task=task-create)'
    module /hurd/ext2fs.static ext2fs \
    --multiboot-command-line='${kernel-command-line}' \
    --exec-server-task='${exec-task}' -T typed '${root}' \
    '$(fs-task=task-create)'
    module /hurd/exec.static exec '$(exec-task=task-create)'
    }
    ### 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 Apr 27 10:14 ata-Compaq_CRD-8481B -> ../../sr0 lrwxrwxrwx 1 root root 9 Apr 27 10:14 ata-ST3160021A_5JS3DDV1 -> ../../sda lrwxrwxrwx 1 root root 10 Apr 27 10:14 ata-ST3160021A_5JS3DDV1-part1 -> ../../sda1
    lrwxrwxrwx 1 root root 10 Apr 27 10:14 ata-ST3160021A_5JS3DDV1-part2 -> ../../sda2
    lrwxrwxrwx 1 root root 10 Apr 27 10:14 ata-ST3160021A_5JS3DDV1-part3 -> ../../sda3
    *********************** END /dev/disk/by-id

    *********************** BEGIN /dev/disk/by-uuid
    total 0
    lrwxrwxrwx 1 root root 10 Apr 27 10:14 72082e70-8522-4075-a455-13034598de42 -> ../../sda3
    lrwxrwxrwx 1 root root 10 Apr 27 10:14 8520de1b-aed3-447b-8d30-495bae3dff90 -> ../../sda1
    lrwxrwxrwx 1 root root 10 Apr 27 10:14 a04f4e5f-36ae-449a-ae6b-e86527bc6ebc -> ../../sda2
    *********************** END /dev/disk/by-uuid

    -- System Information:
    Debian Release: trixie/sid
    APT prefers testing-debug
    APT policy: (500, 'testing-debug'), (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable-debug'), (500, 'testing'), (500, 'stable')
    Architecture: i386 (i686)

    Kernel: Linux 6.1.0-33-686-pae (SMP w/1 CPU thread; PREEMPT)
    Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8), LANGUAGE=fi:en Shell: /bin/sh linked to /usr/bin/dash
    Init: systemd (via /run/systemd/system)
    LSM: AppArmor: enabled

    Versions of packages grub-pc depends on:
    ii debconf [debconf-2.0] 1.5.91
    ii grub-common 2.12-7
    ii grub-pc-bin 2.12-7
    ii grub2-common 2.12-7
    ii ucf 3.0051

    grub-pc recommends no packages.

    grub-pc suggests no packages.

    -- debconf information:
    grub-pc/install_devices_failed: false
    grub-pc/kopt_extracted: false
    grub2/force_efi_extra_removable: false
    grub-pc/install_devices_disks_changed:
    grub2/update_nvram: true
    * grub2/linux_cmdline: panic=15
    grub-pc/chainload_from_menu.lst: true
    grub-pc/disk_description:
    grub2/kfreebsd_cmdline:
    * grub2/linux_cmdline_default: quiet loglevel=3 nosplash
    grub-pc/timeout: 5
    grub-pc/hidden_timeout: false
    grub2/kfreebsd_cmdline_default: quiet
    * grub-pc/install_devices: /dev/disk/by-id/ata-ST3160021A_5JS3DDV1, /dev/disk/by-id/ata-ST3160021A_5JS3DDV1-part3
    * grub2/enable_os_prober: false
    grub-pc/partition_description:
    grub-pc/install_devices_failed_upgrade: true
    grub-pc/mixed_legacy_and_grub2: true
    grub-pc/postrm_purge_boot_grub: false
    * grub2/gnumach_cmdline:
    grub-pc/install_devices_empty: false

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)