Re: [PATCH v3] efi_loader: update SetVariable attribute check

2023-02-15 Thread Masahisa Kojima
Hi Heinrich, On Wed, 15 Feb 2023 at 22:14, Heinrich Schuchardt wrote: > > On 2/15/23 10:55, Masahisa Kojima wrote: > > UEFI specification v2.10 says that > > EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated and > > EFI_UNSUPPORTED should be returned in SetVariable variable service. > >

Re: [PATCH v3] efi_loader: update SetVariable attribute check

2023-02-15 Thread Heinrich Schuchardt
On 2/15/23 10:55, Masahisa Kojima wrote: UEFI specification v2.10 says that EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated and EFI_UNSUPPORTED should be returned in SetVariable variable service. Current implementation returns EFI_INVALID_PARAMETER, let's fix the return value. Together

[PATCH v3] efi_loader: update SetVariable attribute check

2023-02-15 Thread Masahisa Kojima
UEFI specification v2.10 says that EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated and EFI_UNSUPPORTED should be returned in SetVariable variable service. Current implementation returns EFI_INVALID_PARAMETER, let's fix the return value. Together with above change, this commit also updates