Re: [PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-18 Thread Tom Rini
On Wed, 05 Jun 2024 21:43:34 +0300, Maxim Moskalets wrote: > Loading and running the ELF image is the responsibility of the > library and should not be associated with the command line interface. > > It is also required to run ELF images from FIT with the bootm command > so as not to depend on th

Re: [PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-11 Thread Maxim M. Moskalets
On 06.06.2024 17:21, Tom Rini wrote: On Thu, Jun 06, 2024 at 09:02:43AM +0200, Heinrich Schuchardt wrote: On 6/5/24 20:43, Maxim Moskalets wrote: From: Maxim Moskalets Loading and running the ELF image is the responsibility of the library and should not be associated with the command line int

Re: [PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-06 Thread Tom Rini
On Thu, Jun 06, 2024 at 09:02:43AM +0200, Heinrich Schuchardt wrote: > On 6/5/24 20:43, Maxim Moskalets wrote: > > From: Maxim Moskalets > > > > Loading and running the ELF image is the responsibility of the > > library and should not be associated with the command line interface. > > > > It is

Re: [PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-06 Thread Heinrich Schuchardt
On 6/5/24 20:43, Maxim Moskalets wrote: From: Maxim Moskalets Loading and running the ELF image is the responsibility of the library and should not be associated with the command line interface. It is also required to run ELF images from FIT with the bootm command so as not to depend on the co

[PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-05 Thread Maxim Moskalets
From: Maxim Moskalets Loading and running the ELF image is the responsibility of the library and should not be associated with the command line interface. It is also required to run ELF images from FIT with the bootm command so as not to depend on the command line interface. Signed-off-by: Maxi