https://sourceware.org/bugzilla/show_bug.cgi?id=26206

--- Comment #10 from Tamar Christina <tnfchris at sourceware dot org> ---
Does anyone happen to know of an easy(ish) way I can test this?

I've downloaded and modified https://sourceforge.net/projects/gnu-efi/ to
remove the hacks and fixed up the linker script.

I can now produce an efi application from hello world

#include <efi.h>
#include <efilib.h>

EFI_STATUS
EFIAPI
efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
   InitializeLib(ImageHandle, SystemTable);
   Print(L"Hello, world!\n");

   return EFI_SUCCESS;
}

using the standard makefile but having a real hard time figuring out how to
test this with qemu-efi-aarch64.

Can't seem to be able to get it to go to the efi shell to begin with.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to