Re: [PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-07-01 Thread Milan Đokić
On Thu, Jun 27, 2024 at 10:55 AM Jan Beulich wrote: > > On 26.06.2024 18:16, Milan Djokic wrote: > >> +config RISCV_EFI > >> + bool "UEFI boot service support" > >> + depends on RISCV_64 > >> + default n > > > > Nit: This line can be omitted (and if I'm not mistaken we generally do omi

Re: [PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-06-27 Thread Jan Beulich
On 26.06.2024 18:16, Milan Djokic wrote: >> Signed-off-by: Nikola Jelic > > This isn't you, is it? Your S-o-b is going to be needed, too. > > nikola.je...@rt-rk.com is the initial author of the patch, I'll add myself > also if necessary > >> +config RISCV_EFI >> + bool "UEFI boot service s

Re: [PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-06-13 Thread Jan Beulich
On 12.06.2024 14:15, milandjokic1...@gmail.com wrote: > From: Nikola Jelic > > Extended RISC-V xen image with PE/COFF headers, > in order to support xen boot from popular bootloaders like U-boot. > Image header is optionally included (with CONFIG_RISCV_EFI) so > both plain ELF and image with PE/C

[PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-06-12 Thread milandjokic1995
From: Nikola Jelic Extended RISC-V xen image with PE/COFF headers, in order to support xen boot from popular bootloaders like U-boot. Image header is optionally included (with CONFIG_RISCV_EFI) so both plain ELF and image with PE/COFF header can now be generated as build artifacts. Note that thi

Re: [PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-06-05 Thread Jan Beulich
On 05.06.2024 18:54, milandjokic1...@gmail.com wrote: > --- a/xen/arch/riscv/Kconfig > +++ b/xen/arch/riscv/Kconfig > @@ -9,6 +9,15 @@ config ARCH_DEFCONFIG > string > default "arch/riscv/configs/tiny64_defconfig" > > +config RISCV_EFI > + bool "UEFI boot service support" > +

[PATCH] xen/riscv: PE/COFF image header for RISC-V target

2024-06-05 Thread milandjokic1995
From: Nikola Jelic Extended RISC-V xen image with PE/COFF headers, in order to support xen boot from popular bootloaders like U-boot. Image header is optionally included (with CONFIG_RISCV_EFI) so both plain ELF and image with PE/COFF header can now be generated as build artifacts. Tested on bo