Re: [U-Boot] [PATCH v2 1/2] efi_loader: variable: support APPEND_WRITE

2019-09-17 Thread AKASHI Takahiro
On Tue, Sep 17, 2019 at 10:38:47PM +0200, Heinrich Schuchardt wrote: > On 9/6/19 8:09 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_WRI

Re: [U-Boot] [PATCH v2 1/2] efi_loader: variable: support APPEND_WRITE

2019-09-17 Thread Heinrich Schuchardt
On 9/6/19 8:09 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'

Re: [U-Boot] [PATCH v2 1/2] efi_loader: variable: support APPEND_WRITE

2019-09-16 Thread AKASHI Takahiro
On Mon, Sep 16, 2019 at 07:03:41PM +0200, Heinrich Schuchardt wrote: > On 9/6/19 8:09 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_

Re: [U-Boot] [PATCH v2 1/2] efi_loader: variable: support APPEND_WRITE

2019-09-16 Thread Heinrich Schuchardt
On 9/6/19 8:09 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 'va

[U-Boot] [PATCH v2 1/2] efi_loader: variable: support APPEND_WRITE

2019-09-05 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 T