diff options
author | dfr <dfr@FreeBSD.org> | 2001-06-09 16:49:51 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2001-06-09 16:49:51 +0000 |
commit | 5398454adddabb365388617e5532a93e0790429c (patch) | |
tree | 0363e9594830da1c3f4c6b69d6fa954589ec10ab /sys/boot/efi/include/efi.h | |
parent | 640330f7ff48a9ef43f959b570d9ad6fe5bd9fec (diff) | |
download | FreeBSD-src-5398454adddabb365388617e5532a93e0790429c.zip FreeBSD-src-5398454adddabb365388617e5532a93e0790429c.tar.gz |
First approximation of an ia64 EFI loader. Not functional.
Diffstat (limited to 'sys/boot/efi/include/efi.h')
-rw-r--r-- | sys/boot/efi/include/efi.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys/boot/efi/include/efi.h b/sys/boot/efi/include/efi.h new file mode 100644 index 0000000..ef63d82 --- /dev/null +++ b/sys/boot/efi/include/efi.h @@ -0,0 +1,49 @@ +/* $FreeBSD$ */ +/*++ + +Copyright (c) 1998 Intel Corporation + +Module Name: + + efi.h + +Abstract: + + Public EFI header files + + + +Revision History + +--*/ + +// +// Build flags on input +// EFI32 +// EFI_DEBUG - Enable debugging code +// EFI_NT_EMULATOR - Building for running under NT +// + + +#ifndef _EFI_INCLUDE_ +#define _EFI_INCLUDE_ + +#define EFI_FIRMWARE_VENDOR L"INTEL" +#define EFI_FIRMWARE_MAJOR_REVISION 12 +#define EFI_FIRMWARE_MINOR_REVISION 33 +#define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION)) + +#include "efibind.h" +#include "efidef.h" +#include "efidevp.h" +#include "efiprot.h" +#include "eficon.h" +#include "efiser.h" +#include "efi_nii.h" +#include "efipxebc.h" +#include "efinet.h" +#include "efiapi.h" +#include "efifs.h" +#include "efierr.h" + +#endif |