[MINI-OS PATCH 03/12] add elf.h

2025-04-04 Thread Juergen Gross
Add some definitions for accessing an ELF file. Only the file header and the program header are needed. The main source for those are elfstructs.h and libelf.h from the Xen tree. The license boiler plate of those files is being kept in the resulting header file. Signed-off-by: Juergen Gross ---

Re: [MINI-OS PATCH 03/12] add elf.h

2025-03-24 Thread Jan Beulich
On 21.03.2025 16:53, Jürgen Groß wrote: > On 21.03.25 14:51, Jan Beulich wrote: >> On 21.03.2025 10:24, Juergen Gross wrote: >>> +/* e_type */ >>> +#define ET_NONE 0 /* No file type */ >>> +#define ET_REL 1 /* relocatable file */ >>> +#define ET_EXEC 2

Re: [MINI-OS PATCH 03/12] add elf.h

2025-03-21 Thread Jürgen Groß
On 21.03.25 14:51, Jan Beulich wrote: On 21.03.2025 10:24, Juergen Gross wrote: Add some definitions for accessing an ELF file. Only the file header and the program header are needed. The main source for those are elfstructs.h and libelf.h from the Xen tree. The license boiler plate of those fi

Re: [MINI-OS PATCH 03/12] add elf.h

2025-03-21 Thread Jan Beulich
On 21.03.2025 10:24, Juergen Gross wrote: > Add some definitions for accessing an ELF file. Only the file header > and the program header are needed. > > The main source for those are elfstructs.h and libelf.h from the Xen > tree. The license boiler plate of those files is being kept in the > resu