Re: [Xen-devel] [PATCH v7 03/14] x86: add multiboot2 protocol support

2016-09-26 Thread Jan Beulich
>>> On 23.09.16 at 23:47, wrote: > +static multiboot_info_t *mbi2_reloc(u32 mbi_in) > +{ > +const multiboot2_fixed_t *mbi_fix = _p(mbi_in); > +const multiboot2_memory_map_t *mmap_src; > +const multiboot2_tag_t *tag; > +module_t *mbi_out_mods = NULL; > +memory_map_t *mmap_dst; >

[Xen-devel] [PATCH v7 03/14] x86: add multiboot2 protocol support

2016-09-23 Thread Daniel Kiper
Add multiboot2 protocol support. Alter min memory limit handling as we now may not find it from either multiboot (v1) or multiboot2. This way we are laying the foundation for EFI + GRUB2 + Xen development. Signed-off-by: Daniel Kiper --- v7 - suggestions/fixes: - rename mbi_mbi/mbi2_mbi to mb