From c8b6446348a445a51024d04b2e8e5b417c3a1f73 Mon Sep 17 00:00:00 2001 From: Qiumiao Zhang Date: Wed, 31 May 2023 15:13:07 +0800 Subject: [PATCH] skip verification when not loading grub.cfg Skip verification when just opening the grub.cfg without loading it. There is no need to verify grub.cfg twice when tpcm is enabled. Signed-off-by: Qiumiao Zhang --- grub-core/normal/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c index 1b426af..be6b7a3 100644 --- a/grub-core/normal/main.c +++ b/grub-core/normal/main.c @@ -128,7 +128,7 @@ read_config_file (const char *config) } /* Try to open the config file. */ - rawfile = grub_file_open (config, GRUB_FILE_TYPE_CONFIG); + rawfile = grub_file_open (config, GRUB_FILE_TYPE_SKIP_SIGNATURE); if (! rawfile) return 0; -- 2.33.0