diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-12-29 09:23:03 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-12-29 10:51:50 +0100 |
commit | fcf583b4a7f74de1475a953bd934efcdd4e34309 (patch) | |
tree | 903d7ca3031422c326168431acc2815c5ffb194d /lib | |
parent | eff6b7157c0094c02e790146c09a2f1b4bda410f (diff) | |
download | u-boot-fcf583b4a7f74de1475a953bd934efcdd4e34309.zip u-boot-fcf583b4a7f74de1475a953bd934efcdd4e34309.tar.gz u-boot-fcf583b4a7f74de1475a953bd934efcdd4e34309.tar.bz2 |
efi_loader: typo non-volatile in efi_var_restore
It is volatile variables that we do not allow to be restored from file.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_var_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_var_file.c b/lib/efi_loader/efi_var_file.c index 3d58caa..de9ba8d 100644 --- a/lib/efi_loader/efi_var_file.c +++ b/lib/efi_loader/efi_var_file.c @@ -176,7 +176,7 @@ efi_status_t efi_var_restore(struct efi_var_file *buf, bool safe) data = var->name + u16_strlen(var->name) + 1; /* - * Secure boot related and non-volatile variables shall only be + * Secure boot related and volatile variables shall only be * restored from U-Boot's preseed. */ if (!safe && |