Re: [U-Boot] [PATCH] efi_loader: variable: support APPEND_WRITE

2019-09-05 Thread AKASHI Takahiro
On Tue, Sep 03, 2019 at 10:31:25PM +0200, Heinrich Schuchardt wrote: > On 9/3/19 7:40 AM, AKASHI Takahiro wrote: > >If EFI_VARIABLE_APPEND_WRITE is specified in attributes at > >efi_set_variable(), specified data will be appended to the variable's > >original value. Attributes other than

Re: [U-Boot] [PATCH] efi_loader: variable: support APPEND_WRITE

2019-09-03 Thread Heinrich Schuchardt
On 9/3/19 7:40 AM, AKASHI Takahiro wrote: If EFI_VARIABLE_APPEND_WRITE is specified in attributes at efi_set_variable(), specified data will be appended to the variable's original value. Attributes other than APPEND_WRITE should not be modified. With this patch, APPEND_WRITE test in 'variables'

[U-Boot] [PATCH] efi_loader: variable: support APPEND_WRITE

2019-09-02 Thread AKASHI Takahiro
If EFI_VARIABLE_APPEND_WRITE is specified in attributes at efi_set_variable(), specified data will be appended to the variable's original value. Attributes other than APPEND_WRITE should not be modified. With this patch, APPEND_WRITE test in 'variables' selftest will pass. Signed-off-by: AKASHI