blob: b9c647b78efafacf865e30d21685e3d38d626bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <shim.h>
#include <memory.h>
/**
* Loads the multi boot information
* @param mboot_info - the pointer passed from multiboot2
* @param shim_info - the info to be collected by shim
*/
void mboot_load_info(long mboot_magic, const void *mboot_info, struct boot_info *shim_info);
|