blob: e6bbe431546efa1a06ebf306f74ea857f986b5e8 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001# SPDX-License-Identifier: GPL-2.0+
Alexander Graf67ee7052016-03-04 01:10:07 +01002#
3# (C) Copyright 2016 Alexander Graf
4#
Alexander Graf67ee7052016-03-04 01:10:07 +01005
6# This file only gets included with CONFIG_EFI_LOADER set, so all
7# object inclusion implicitly depends on it
8
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02009CFLAGS_efi_boottime.o += \
10 -DFW_VERSION="0x$(VERSION)" \
11 -DFW_PATCHLEVEL="0x$(PATCHLEVEL)"
Alexander Graf8b86ad62017-12-01 22:09:50 +010012CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding
Heinrich Schuchardte59708d2019-01-12 15:32:06 +010013CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI)
Simon Glassfac4ced2016-11-07 08:47:08 -070014
Heinrich Schuchardte9db7c92017-09-05 03:19:39 +020015ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),)
16always += helloworld.efi
17endif
Alexander Grafb5483512016-11-17 22:40:10 +010018
Simon Glassfac4ced2016-11-07 08:47:08 -070019obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o
Heinrich Schuchardte59072a2018-09-04 19:34:58 +020020obj-y += efi_bootmgr.o
21obj-y += efi_boottime.o
22obj-y += efi_console.o
23obj-y += efi_device_path.o
24obj-y += efi_device_path_to_text.o
25obj-y += efi_device_path_utilities.o
26obj-y += efi_file.o
Heinrich Schuchardtd14329b2019-05-08 21:42:36 +020027obj-$(CONFIG_EFI_LOADER_HII) += efi_hii.o efi_hii_config.o
Heinrich Schuchardte59072a2018-09-04 19:34:58 +020028obj-y += efi_image_loader.o
29obj-y += efi_memory.o
Heinrich Schuchardt79d72022018-09-20 21:58:23 +020030obj-y += efi_root_node.o
Heinrich Schuchardte59072a2018-09-04 19:34:58 +020031obj-y += efi_runtime.o
AKASHI Takahiro7e0badb2018-12-30 15:16:55 +010032obj-y += efi_setup.o
Heinrich Schuchardte59072a2018-09-04 19:34:58 +020033obj-y += efi_unicode_collation.o
34obj-y += efi_variable.o
Leif Lindholmb6e6fdc2018-03-09 17:43:21 +010035obj-y += efi_watchdog.o
Alexander Grafd65783d2016-03-15 18:38:21 +010036obj-$(CONFIG_LCD) += efi_gop.o
Rob Clark92cec962017-07-21 15:00:27 -040037obj-$(CONFIG_DM_VIDEO) += efi_gop.o
Alexander Graf67ee7052016-03-04 01:10:07 +010038obj-$(CONFIG_PARTITIONS) += efi_disk.o
Joe Hershberger5277a972018-04-13 15:26:39 -050039obj-$(CONFIG_NET) += efi_net.o
Bin Meng2cfbdae2018-06-27 20:38:03 -070040obj-$(CONFIG_GENERATE_ACPI_TABLE) += efi_acpi.o
Alexander Graf66f96e12016-08-19 01:23:29 +020041obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o