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

2024-04-26 Thread Maxim M. Moskalets
On 26.04.2024 17:32, Heinrich Schuchardt wrote: On 26.04.24 11:11, 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

Re: [PATCH] cmd: bootm: add ELF file support

2024-03-19 Thread Maxim M. Moskalets
Hi Sean On 19.03.2024 19:15, Sean Anderson wrote: Hi Maxim, On 3/19/24 12:10, Maxim Moskalets wrote: [You don't often get email from maximmo...@gmail.com. Learn why this is important at

Re: [PATCH v4] cmd: add FDT setup for bootelf by flag

2024-03-07 Thread Maxim M. Moskalets
On 07.03.2024 15:41, Tom Rini wrote: On Mon, Feb 26, 2024 at 09:35:53PM +0300, Maxim Moskalets wrote: From: Maxim Moskalets Added the ability to use FDT for ELF applications, required to run some OS. To make FDT setup, you need to set the -d fdt_addr_r cmd option for bootelf command.

Re: [PATCH v4] cmd: add FDT setup for bootelf by flag

2024-02-29 Thread Maxim M. Moskalets
Hello Tom, On 26.02.2024 21:35, Maxim Moskalets wrote: From: Maxim Moskalets Added the ability to use FDT for ELF applications, required to run some OS. To make FDT setup, you need to set the -d fdt_addr_r cmd option for bootelf command. Signed-off-by: Maxim Moskalets Cc: Tom Rini ---