Re: [U-Boot] [U-Boot, PATCHv2] scripts: Add script to extract default environment

2016-10-08 Thread Tom Rini
On Sat, Sep 17, 2016 at 06:57:39AM +0200, Lukasz Majewski wrote: > This script looks for env_common.o object file and extracts from it default > u-boot environment, which is afterwards printed on standard output. > > Usage example: > get_default_envs.sh > u-boot-env-default.txt > > The generated

Re: [U-Boot] [PATCHv2] scripts: Add script to extract default environment

2016-09-29 Thread Lukasz Majewski
Hi Simon, > Hi, > > On 27 September 2016 at 07:37, Lukasz Majewski > wrote: > > Hi Simon, > > > >> Hi Lukasz, > >> > >> On 16 September 2016 at 22:57, Lukasz Majewski > >> wrote: > >> > This script looks for env_common.o object file and extracts from > >> > it default u-boot environment, which

Re: [U-Boot] [PATCHv2] scripts: Add script to extract default environment

2016-09-28 Thread Simon Glass
Hi, On 27 September 2016 at 07:37, Lukasz Majewski wrote: > Hi Simon, > >> Hi Lukasz, >> >> On 16 September 2016 at 22:57, Lukasz Majewski >> wrote: >> > This script looks for env_common.o object file and extracts from it >> > default u-boot environment, which is afterwards printed on standard >

Re: [U-Boot] [PATCHv2] scripts: Add script to extract default environment

2016-09-27 Thread Lukasz Majewski
Hi Simon, > Hi Lukasz, > > On 16 September 2016 at 22:57, Lukasz Majewski > wrote: > > This script looks for env_common.o object file and extracts from it > > default u-boot environment, which is afterwards printed on standard > > output. > > > > Usage example: > > get_default_envs.sh > u-boot-e

Re: [U-Boot] [PATCHv2] scripts: Add script to extract default environment

2016-09-26 Thread Simon Glass
Hi Lukasz, On 16 September 2016 at 22:57, Lukasz Majewski wrote: > This script looks for env_common.o object file and extracts from it default > u-boot environment, which is afterwards printed on standard output. > > Usage example: > get_default_envs.sh > u-boot-env-default.txt > > The generated

[U-Boot] [PATCHv2] scripts: Add script to extract default environment

2016-09-16 Thread Lukasz Majewski
This script looks for env_common.o object file and extracts from it default u-boot environment, which is afterwards printed on standard output. Usage example: get_default_envs.sh > u-boot-env-default.txt The generated text file can be used as input for mkenvimage. Signed-off-by: Lukasz Majewski