mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
c65d76ed5f
Add support for EFI apps on aarch64. This includes start-up and relocation code plus a link script. Signed-off-by: Simon Glass <sjg@chromium.org> [agraf: add kconfig dep] Signed-off-by: Alexander Graf <agraf@suse.de>
14 lines
359 B
Makefile
14 lines
359 B
Makefile
#
|
|
# (C) Copyright 2002
|
|
# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
PLATFORM_RELFLAGS += -fno-common -ffixed-x18
|
|
|
|
PF_NO_UNALIGNED := $(call cc-option, -mstrict-align)
|
|
PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED)
|
|
|
|
EFI_LDS := elf_aarch64_efi.lds
|
|
EFI_CRT0 := crt0_aarch64_efi.o
|
|
EFI_RELOC := reloc_aarch64_efi.o
|