[PATCH 1/1] configure.ac: Fix SDL2 typo by referencing value

2023-07-18 Thread Michał Grzelak
-off-by: Michał Grzelak --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 01500ffdf..27c5918fa 100644 --- a/configure.ac +++ b/configure.ac @@ -1609,7 +1609,7 @@ if test "$platform" = emu; then AC_SUBST

[PATCH 0/1] configure.ac: Fix SDL2 typo by referencing value

2023-07-18 Thread Michał Grzelak
patches cannot be squashed, this patch fixes the issue with SDL2. Best regards, Michał Michał Grzelak (1): configure.ac: Fix SDL2 typo by referencing value configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.37.3 ___ Grub-devel

[PATCH] configure.ac: Fix typo by adding missing $

2023-06-29 Thread Michał Grzelak
During configuration of sdl, variable enable_grub_emu_sdl is checked whether to throw an error message. Howerever, error could not happen because two unequal strings were compared. Fix this by referencing value of enable_grub_emu_sdl, not name. Signed-off-by: Michał Grzelak --- configure.ac | 2

[PATCH v2 0/1] tpm: Enable boot despite unknown firmware failure

2023-06-15 Thread Michał Grzelak
nge grub_tpm_is_fail_fatal() back to tpm_is_fail_fatal() - make is_tpm_fail_fatal() static - move is_tpm_fail_fatal() body to include/grub/tpm.h - update docs excerpt about tpm_fail_fatal Michał Grzelak (1): tpm: Enable boot despite unknown firmware failure docs/grub.texi | 5 + grub-c

[PATCH v2 1/1] tpm: Enable boot despite unknown firmware failure

2023-06-15 Thread Michał Grzelak
when unknown TPM error is encountered. Check environment variable tpm_fail_fatal to fallback to previous behaviour. Signed-off-by: Michał Grzelak --- docs/grub.texi | 5 + grub-core/commands/efi/tpm.c | 3 ++- grub-core/commands/tpm.c | 7 --- include/grub/

[PATCH] tpm: Enable boot despite unknown firmware failure

2023-06-14 Thread Michał Grzelak
when unknown TPM error is encountered. Make grub_tpm_is_fail_fatal() global and move its body to efi/tpm.c. Check environment variable tpm_fail_fatal to fallback to previous behaviour. Signed-off-by: Michał Grzelak --- grub-core/commands/efi/tpm.c | 10 +- grub-core/commands/tpm.c