Re: [PATCH V2] nvmem: add driver handling U-Boot environment variables

2022-05-06 Thread Ahmad Fatoum
Hello Rafał, On 05.05.22 07:46, Rafał Miłecki wrote: > On 4.05.2022 11:23, Ahmad Fatoum wrote: >> Hello Rafał, >> >> On 03.05.22 18:56, Rafał Miłecki wrote: >>> From: Rafał Miłecki >>> >>> U-Boot stores its setup as environment variables. It's a list of >>> key-value pairs stored on flash device

Re: [PATCH V2] nvmem: add driver handling U-Boot environment variables

2022-05-04 Thread Rafał Miłecki
On 4.05.2022 11:23, Ahmad Fatoum wrote: Hello Rafał, On 03.05.22 18:56, Rafał Miłecki wrote: From: Rafał Miłecki U-Boot stores its setup as environment variables. It's a list of key-value pairs stored on flash device with a custom header. This commit adds an NVMEM driver that: 1. Provides NV

Re: [PATCH V2] nvmem: add driver handling U-Boot environment variables

2022-05-04 Thread Ahmad Fatoum
Hello Rafał, On 03.05.22 18:56, Rafał Miłecki wrote: > From: Rafał Miłecki > > U-Boot stores its setup as environment variables. It's a list of > key-value pairs stored on flash device with a custom header. > > This commit adds an NVMEM driver that: > 1. Provides NVMEM access to environment var

[PATCH V2] nvmem: add driver handling U-Boot environment variables

2022-05-03 Thread Rafał Miłecki
From: Rafał Miłecki U-Boot stores its setup as environment variables. It's a list of key-value pairs stored on flash device with a custom header. This commit adds an NVMEM driver that: 1. Provides NVMEM access to environment vars binary data 2. Extracts variables as NVMEM cells It can be used f