我尝试使用gnu-efi
. 但我不明白如何编译我的 uefi 应用程序代码。
我得到gnu-efi
3.0.2,解压缩并输入make && make install
. 我写你好世界代码:
#include <efi.h>
#include <efilib.h>
EFI_STATUS efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
InitializeLib(ImageHandle, SystemTable);
Print(L"Hello, world!\n");
return EFI_SUCCESS;
}
我的操作系统是 Ubuntu 15.04。