diff options
author | marcel <marcel@FreeBSD.org> | 2004-11-28 00:30:22 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-11-28 00:30:22 +0000 |
commit | e1b8c62f9a07a70d857ae47db44a1272a23dfede (patch) | |
tree | 70853a6b174692d6235a0b0bf335930e223022ec /sys/boot/efi/include/efilib.h | |
parent | 1fb788a6b0ec8d65f1a089a5f2fdbe6b6832951e (diff) | |
download | FreeBSD-src-e1b8c62f9a07a70d857ae47db44a1272a23dfede.zip FreeBSD-src-e1b8c62f9a07a70d857ae47db44a1272a23dfede.tar.gz |
o Introduce efimd_va2pa() to translate addresses in efi_copy{in|out}()
and efi_readin(). This removes MD code from copy.c.
o Don't unconditionally add pal.S to SRCS. It's specific to ia64.
Diffstat (limited to 'sys/boot/efi/include/efilib.h')
-rw-r--r-- | sys/boot/efi/include/efilib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/efi/include/efilib.h b/sys/boot/efi/include/efilib.h index 1e7b269..abd3e50 100644 --- a/sys/boot/efi/include/efilib.h +++ b/sys/boot/efi/include/efilib.h @@ -34,5 +34,7 @@ extern EFI_RUNTIME_SERVICES *RS; void *efi_get_table(EFI_GUID *tbl); void efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table); +EFI_PHYSICAL_ADDRESS efimd_va2pa(EFI_VIRTUAL_ADDRESS); + EFI_STATUS main(int argc, CHAR16 *argv[]); void exit(EFI_STATUS status); |