mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-19 05:31:31 +02:00
As reported by Jonas Karlman this series breaks booting on some AArch64 platforms with common use cases. For now the best path forward is to revert the series. This reverts commit 777c28460947371ada40868dc994dfe8537d7115, reversing changes made to ab3453e7b12daef47b9e91da2a2a3d48615dc6fc. Link: https://lore.kernel.org/u-boot/50dfa3d6-a1ca-4492-a3fc-8d8c56b40b43@kwiboo.se/ Signed-off-by: Tom Rini <trini@konsulko.com>
106 lines
2.5 KiB
Makefile
106 lines
2.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2002-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y += bdinfo.o
|
|
|
|
ifndef CONFIG_$(SPL_TPL_)X86_64
|
|
obj-y += bios.o
|
|
obj-y += bios_asm.o
|
|
obj-y += bios_interrupts.o
|
|
endif
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_X86_32BIT_INIT) += string.o
|
|
endif
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_CMD_BOOTM) += bootm.o
|
|
endif
|
|
obj-y += cmd_boot.o
|
|
obj-$(CONFIG_$(SPL_)COREBOOT_SYSINFO) += coreboot/
|
|
obj-$(CONFIG_SEABIOS) += coreboot_table.o
|
|
obj-y += early_cmos.o
|
|
obj-y += e820.o
|
|
obj-y += init_helpers.o
|
|
obj-y += interrupts.o
|
|
obj-y += lpc-uclass.o
|
|
obj-y += mpspec.o
|
|
obj-$(CONFIG_$(SPL_TPL_)ACPIGEN) += acpi_nhlt.o
|
|
obj-y += northbridge-uclass.o
|
|
obj-$(CONFIG_I8259_PIC) += i8259.o
|
|
obj-$(CONFIG_I8254_TIMER) += i8254.o
|
|
obj-$(CONFIG_PINCTRL_ICH6) += pinctrl_ich6.o
|
|
obj-y += pirq_routing.o
|
|
obj-y += relocate.o
|
|
obj-y += physmem.o
|
|
obj-$(CONFIG_INTEL_MID) += pmu.o
|
|
obj-$(CONFIG_X86_RAMTEST) += ramtest.o
|
|
obj-$(CONFIG_INTEL_MID) += scu.o
|
|
obj-y += sections.o
|
|
obj-y += sfi.o
|
|
obj-y += acpi.o
|
|
obj-$(CONFIG_HAVE_ACPI_RESUME) += acpi_s3.o
|
|
ifndef CONFIG_QEMU
|
|
obj-y += acpigen.o
|
|
obj-$(CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE) += acpi_table.o
|
|
endif
|
|
obj-y += tables.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_ZBOOT) += zimage.o
|
|
endif
|
|
obj-$(CONFIG_USE_HOB) += hob.o
|
|
ifndef CONFIG_TPL_BUILD
|
|
obj-$(CONFIG_ENABLE_MRC_CACHE) += mrccache.o
|
|
obj-$(CONFIG_HAVE_FSP) += fsp/
|
|
obj-$(CONFIG_FSP_VERSION1) += fsp1/
|
|
obj-$(CONFIG_FSP_VERSION2) += fsp2/
|
|
endif
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
ifdef CONFIG_TPL_BUILD
|
|
obj-y += tpl.o
|
|
else
|
|
obj-y += spl.o
|
|
endif
|
|
endif
|
|
|
|
lib-$(CONFIG_USE_PRIVATE_LIBGCC) += div64.o
|
|
|
|
obj-$(CONFIG_EFI_APP_32BIT) += crt0_ia32_efi.o reloc_ia32_efi.o
|
|
obj-$(CONFIG_EFI_APP_64BIT) += crt0_x86_64_efi.o reloc_x86_64_efi.o
|
|
|
|
ifneq ($(CONFIG_EFI_STUB),)
|
|
|
|
CFLAGS_REMOVE_reloc_ia32_efi.o += -mregparm=3
|
|
CFLAGS_reloc_ia32_efi.o += -fpic -fshort-wchar
|
|
|
|
# When building for 64-bit we must remove the i386-specific flags
|
|
CFLAGS_REMOVE_reloc_x86_64_efi.o += -mregparm=3 -march=i386 -m32
|
|
CFLAGS_reloc_x86_64_efi.o += -fpic -fshort-wchar -m64
|
|
|
|
AFLAGS_REMOVE_crt0_x86_64_efi.o += -mregparm=3 -march=i386 -m32
|
|
AFLAGS_crt0_x86_64_efi.o += -fpic -fshort-wchar -m64
|
|
|
|
extra-$(CONFIG_EFI_STUB_32BIT) += crt0_ia32_efi.o reloc_ia32_efi.o
|
|
extra-$(CONFIG_EFI_STUB_64BIT) += crt0_x86_64_efi.o reloc_x86_64_efi.o
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_EFI_STUB
|
|
|
|
ifeq ($(CONFIG_$(SPL_)X86_64),)
|
|
extra-y += $(EFI_CRT0) $(EFI_RELOC)
|
|
endif
|
|
|
|
else
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
ifneq ($(CONFIG_CMD_BOOTEFI_SELFTEST)$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),)
|
|
extra-y += $(EFI_CRT0) $(EFI_RELOC)
|
|
endif
|
|
endif
|
|
|
|
endif
|