Your message dated Thu, 06 Jul 2017 17:21:15 +0000
with message-id <[email protected]>
and subject line Bug#840204: fixed in grub2 2.02-2
has caused the Debian Bug report #840204,
regarding grub-pc: "GRUB! error: unknown filesystem" on ext4 with 
filesystem-level encryption
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.)


-- 
840204: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840204
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-pc
Version: 2.02~beta2-36
Severity: normal
Tags: upstream

Dear Maintainer,

I enabled ext4 filesystem-level encryption with:

tune2fs -O encrypt /dev/sda1

On the next reboot I get "unknown filesystem".

If I try to run grub-probe I get the same error-message.

# grub-probe -d /dev/sda1 
grub-probe: error: unknown filesystem.

Luca


-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/sda1 / ext4 rw,noatime,nodiratime,errors=remount-ro,data=ordered 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 loadfont unicode ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=it_IT
  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_msdos
set root='hd0,msdos1'
insmod png
if background_image /boot/grub/.background_cache.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-/dev/sda1' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        echo    'Caricamento Linux 4.7.0-1-amd64...'
        linux   /boot/vmlinuz-4.7.0-1-amd64 root=/dev/sda1 ro  quiet
        echo    'Caricamento ramdisk iniziale...'
        initrd  /boot/initrd.img-4.7.0-1-amd64
}
submenu 'Opzioni avanzate per Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-/dev/sda1' {
        menuentry 'Debian GNU/Linux, con Linux 4.7.0-1-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.7.0-1-amd64-advanced-/dev/sda1' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_msdos
                echo    'Caricamento Linux 4.7.0-1-amd64...'
                linux   /boot/vmlinuz-4.7.0-1-amd64 root=/dev/sda1 ro  quiet
                echo    'Caricamento ramdisk iniziale...'
                initrd  /boot/initrd.img-4.7.0-1-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 4.7.0-1-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-4.7.0-1-amd64-recovery-/dev/sda1' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                insmod part_msdos
                echo    'Caricamento Linux 4.7.0-1-amd64...'
                linux   /boot/vmlinuz-4.7.0-1-amd64 root=/dev/sda1 ro single 
                echo    'Caricamento ramdisk iniziale...'
                initrd  /boot/initrd.img-4.7.0-1-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 ###
### 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 LVM
*********************** END LVM

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Oct  7 21:31 
ata-INTEL_SSDSC2BF180A4L_CVDA412403GC1802GN -> ../../sda
lrwxrwxrwx 1 root root 10 Oct  7 21:31 
ata-INTEL_SSDSC2BF180A4L_CVDA412403GC1802GN-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct  7 21:31 
ata-INTEL_SSDSC2BF180A4L_CVDA412403GC1802GN-part2 -> ../../sda2
lrwxrwxrwx 1 root root  9 Oct  7 21:31 wwn-0x55cd2e404b9afeb0 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct  7 21:31 wwn-0x55cd2e404b9afeb0-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Oct  7 21:31 wwn-0x55cd2e404b9afeb0-part2 -> 
../../sda2
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Oct  7 21:31 07294130-aba6-4690-90ed-af534a3961f0 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Oct  7 21:31 7d078d76-5551-4fdf-a149-2ae1483b76ed -> 
../../sda2
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.7.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.59
ii  dpkg                   1.18.10
ii  grub-common            2.02~beta2-36
ii  grub-pc-bin            2.02~beta2-36
ii  grub2-common           2.02~beta2-36
ii  ucf                    3.0036

grub-pc recommends no packages.

grub-pc suggests no packages.

-- debconf-show failed

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.02-2

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.
Colin Watson <[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, 06 Jul 2017 18:02:02 +0100
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-emu-dbg grub-pc-bin grub-pc-dbg grub-pc grub-rescue-pc grub-coreboot-bin 
grub-coreboot-dbg grub-coreboot grub-efi-ia32-bin grub-efi-ia32-dbg 
grub-efi-ia32 grub-efi-amd64-bin grub-efi-amd64-dbg grub-efi-amd64 
grub-efi-ia64-bin grub-efi-ia64-dbg grub-efi-ia64 grub-efi-arm-bin 
grub-efi-arm-dbg grub-efi-arm grub-efi-arm64-bin grub-efi-arm64-dbg 
grub-efi-arm64 grub-ieee1275-bin grub-ieee1275-dbg grub-ieee1275 
grub-firmware-qemu grub-uboot-bin grub-uboot-dbg grub-uboot grub-xen-bin 
grub-xen-dbg grub-xen grub-xen-host grub-yeeloong-bin grub-yeeloong-dbg 
grub-yeeloong grub-theme-starfield grub-mount-udeb
Architecture: source
Version: 2.02-2
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description:
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot binaries)
 grub-coreboot-dbg - GRand Unified Bootloader, version 2 (Coreboot debug files)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
 grub-efi-amd64-dbg - GRand Unified Bootloader, version 2 (EFI-AMD64 debug 
files)
 grub-efi-arm - GRand Unified Bootloader, version 2 (ARM UEFI version)
 grub-efi-arm-bin - GRand Unified Bootloader, version 2 (ARM UEFI binaries)
 grub-efi-arm-dbg - GRand Unified Bootloader, version 2 (ARM UEFI debug files)
 grub-efi-arm64 - GRand Unified Bootloader, version 2 (ARM64 UEFI version)
 grub-efi-arm64-bin - GRand Unified Bootloader, version 2 (ARM64 UEFI binaries)
 grub-efi-arm64-dbg - GRand Unified Bootloader, version 2 (ARM64 UEFI debug 
files)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 binaries)
 grub-efi-ia32-dbg - GRand Unified Bootloader, version 2 (EFI-IA32 debug files)
 grub-efi-ia64 - GRand Unified Bootloader, version 2 (IA64 version)
 grub-efi-ia64-bin - GRand Unified Bootloader, version 2 (IA64 binaries)
 grub-efi-ia64-dbg - GRand Unified Bootloader, version 2 (IA64 debug files)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-emu-dbg - GRand Unified Bootloader, version 2 (emulated debug files)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware 
binaries)
 grub-ieee1275-dbg - GRand Unified Bootloader, version 2 (Open Firmware debug 
files)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS binaries)
 grub-pc-dbg - GRand Unified Bootloader, version 2 (PC/BIOS debug files)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-theme-starfield - GRand Unified Bootloader, version 2 (starfield theme)
 grub-uboot - GRand Unified Bootloader, version 2 (ARM U-Boot version)
 grub-uboot-bin - GRand Unified Bootloader, version 2 (ARM U-Boot binaries)
 grub-uboot-dbg - GRand Unified Bootloader, version 2 (ARM U-Boot debug files)
 grub-xen   - GRand Unified Bootloader, version 2 (Xen version)
 grub-xen-bin - GRand Unified Bootloader, version 2 (Xen binaries)
 grub-xen-dbg - GRand Unified Bootloader, version 2 (Xen debug files)
 grub-xen-host - GRand Unified Bootloader, version 2 (Xen host version)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong binaries)
 grub-yeeloong-dbg - GRand Unified Bootloader, version 2 (Yeeloong debug files)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 840204
Changes:
 grub2 (2.02-2) unstable; urgency=medium
 .
   * Comment out debian/watch lines for betas and pre-releases for now.
   * Cherry-pick upstream patch to allow mounting ext2/3/4 file systems that
     have the 'encrypt' feature enabled (closes: #840204).
Checksums-Sha1:
 1507ce894f0ea258241e63ee42e6375a64d6b8bb 6200 grub2_2.02-2.dsc
 268619a1a27f319489deffee714e37b342a56ce2 1029120 grub2_2.02-2.debian.tar.xz
 2497ef3f6295e35a70abbe87a9a71f06a9609e56 13502 grub2_2.02-2_source.buildinfo
Checksums-Sha256:
 bb3402c15aaba31701c63e844a3738cb06e4ef0175e4f1fb002f76fed1e17af5 6200 
grub2_2.02-2.dsc
 02606bb7dd1b631fc8225de0be9711c66a951fdb650802f27764e13b14242c6e 1029120 
grub2_2.02-2.debian.tar.xz
 29f7b7ed02de4b6941b29397ba2c8b5ad76133a6f29eb2f1f6df2cd1b5ea0711 13502 
grub2_2.02-2_source.buildinfo
Files:
 e9439cd60b332f1bf3cfc5c7a66dca86 6200 admin extra grub2_2.02-2.dsc
 9d9d6839b5e1e2cae702a1ee6f712c16 1029120 admin extra grub2_2.02-2.debian.tar.xz
 0b959ec025f0389f9ce258f7fa1d4f2e 13502 admin extra 
grub2_2.02-2_source.buildinfo

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

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAllebS4ACgkQOTWH2X2G
UAsjsQ/7BEm5Zc4Njad+a5SwMG+/Td5GP0UpwsalGwfeAsyMvzS8FBu60k46PvLO
yH/wpw+ZVb+m3P5VCItUpjkj86W/djQirhxeWwo7xWVcEU54TcBp9hLzbmY89z+m
5+zzR8Dz2j4aklYvPYDfyapdcbqY5nk6yRhqYz0iikFqwNDt7lGPXCsLIrJVFX5V
+u9lfW2tiB31My1D/mJgb34DVhLITjI7h5H/SgoZrmbVrQPJR5CZet+DBUAfezxw
3Y4pmggbAGNAR1tzqEuzCYOOqVTAf2mWcVwVR2JGeXp6TOpctRJTa8IwS0rLgVvF
KSdsyrgSTQ5ED9do7KvWODRYybhAI3E3YVyxhl6o0th540f9x/ZKI2ke5xQyCcF4
5eU3k5VHFAf2at9trDp6DompHzGvKc3S2lLtPXJjfA+4EPl8FJlg7flptv8Kw/A2
J2T5zxZM75z+KcYCZgwFPK2r9vZTMpRAgyZIe70hgM1DpefvZ8lxtRwLEHH9gtnx
SEwSuHCDXf95KpCEkTsYcRJG9mkhEA1SwoOcg2Hl5I2Eu8qzO+FZE6URSvKggX5/
F4zEy2XYhDIT2crPGc7p/1QrzrbU8CfZuLF7FSAc2IriNStJALvhFe127TV9hLpW
X24cgYhi0lhi3w6RjcD7E9ALtfX/MEsUEuIubgDEfuxoR9aM5rg=
=ICTr
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to