[PATCH v7 1/1] plainmount: Support plain encryption mode

2022-09-18 Thread Maxim Fomin
From 687f8687f7c72ac91e250c9b89659f69b3644bfb Mon Sep 17 00:00:00 2001 From: Maxim Fomin Date: Sun, 18 Sep 2022 19:43:12 +0100 Subject: [PATCH v7 1/1] plainmount: Support plain encryption mode This patch adds support for plain encryption mode (plain dm-crypt) via new module/command named 'plainmo

[PATCH] Explicitly unset SOURCE_DATE_EPOCH before running fs tests

2022-09-18 Thread Steve McIntyre
In some filesystem utils like mksquashfs, they will silently change behaviour and cause timestamps to unexpectedly change. Build environments like Debian's set SOURCE_DATE_EPOCH in the environment, so remove it. Reproducible builds are good and useful for shipped artifacts, but this causes build-ti

[PATCH 0/2] bash-completion:fix shellcheck error and warning

2022-09-18 Thread t.feng via Grub-devel
Hi, The patch set fix some warning and error in grub-completion.bash.in. And shellcheck also provides 'info' and 'style' level check, i think grub do not need to modify. shellcheck -s bash -S warning grub-completion.bash.in shellcheck:https://github.com/koalaman/shellcheck t.feng (2): bash-com

[PATCH 1/2] bash-completion:fix shellcheck error

2022-09-18 Thread t.feng via Grub-devel
SC2070 (error): -n doesn't work with unquoted arguments. Quote or use [[ ]]. In grub-completion.bash.in line 130: [ -n $tmp ] && { ^--^ SC2070 (error) ref:https://github.com/koalaman/shellcheck/wiki/SC2070 --- util/bash-completion.d/grub-completion.bash.in | 2 +-

[PATCH 2/2] bash-completion:fix shellcheck warning

2022-09-18 Thread t.feng via Grub-devel
SC2207 (warning): Prefer mapfile or read -a to split command output (or quote to avoid splitting). SC2120 (warning): __grub_get_options_from_help references arguments, but none are ever passed. SC2155 (warning): Declare and assign separately to avoid masking return values. In grub-completion.bash.