Package: ecryptfs-utils / 111-8

Metadata

Package Version Patches format
ecryptfs-utils 111-8 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
set up encrypted swap on nvme and mmc.patch | (download)

src/utils/ecryptfs-setup-swap | 14 12 + 2 - 0 !
1 file changed, 12 insertions(+), 2 deletions(-)

 ecryptfs-setup-swap: handle nvme and mmc swap partitions
 Prevent unencrypted swap partitions from being automatically enabled by
 systemd. This bug affected GPT partitioned NVMe/MMC drives and resulted in the
 swap partition being used without encryption. It also resulted in a usability
 issue in that users were erroneously prompted to enter a pass-phrase to unlock
 their swap partition at boot. (LP: #1597154)
use pkg config_gpgme.diff | (download)

configure.ac | 18 1 + 17 - 0 !
1 file changed, 1 insertion(+), 17 deletions(-)

---
swapfile support.patch | (download)

src/utils/ecryptfs-setup-swap | 12 8 + 4 - 0 !
1 file changed, 8 insertions(+), 4 deletions(-)

 fix to make the script work with swapfiles and to use the right script to start encrypted swap
Bug-Ubuntu: https://launchpad.net/bugs/1670336
fix type.patch | (download)

src/utils/ecryptfs_generate_tpm_key.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix pointer type
 tmp_pcrs is being allocated a memory with sizeof(int) and value obtained
 from atoi() is stored in it. Since the value stored and memory allocated
 are both 'int', the pointer should be 'int *'.