blob: e6bbe431546efa1a06ebf306f74ea857f986b5e8 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001# SPDX-License-Identifier: GPL-2.0+
Alexander Grafed980b82016-03-04 01:10:07 +01002#
3# (C) Copyright 2016 Alexander Graf
4#
Alexander Grafed980b82016-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 Schuchardt0b386532018-06-28 12:45:30 +02009CFLAGS_efi_boottime.o += \
10 -DFW_VERSION="0x$(VERSION)" \
11 -DFW_PATCHLEVEL="0x$(PATCHLEVEL)"
Alexander Graf3bb74f92017-12-01 22:09:50 +010012CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding
Heinrich Schuchardt0e3dc012019-01-12 15:32:06 +010013CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI)
Simon Glassc7ae3df2016-11-07 08:47:08 -070014
Heinrich Schuchardtc96967e2017-09-05 03:19:39 +020015ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),)
16always += helloworld.efi
17endif
Alexander Graf95b62b22016-11-17 22:40:10 +010018
Simon Glassc7ae3df2016-11-07 08:47:08 -070019obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o
Heinrich Schuchardt0bc4b0d2018-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 Schuchardt5ad38772019-05-08 21:42:36 +020027obj-$(CONFIG_EFI_LOADER_HII) += efi_hii.o efi_hii_config.o
Heinrich Schuchardt0bc4b0d2018-09-04 19:34:58 +020028obj-y += efi_image_loader.o
29obj-y += efi_memory.o
Heinrich Schuchardt4e6b5d62018-09-20 21:58:23 +020030obj-y += efi_root_node.o
Heinrich Schuchardt0bc4b0d2018-09-04 19:34:58 +020031obj-y += efi_runtime.o
AKASHI Takahiro056b45b2018-12-30 15:16:55 +010032obj-y += efi_setup.o
Heinrich Schuchardt0bc4b0d2018-09-04 19:34:58 +020033obj-y += efi_unicode_collation.o
34obj-y += efi_variable.o
Leif Lindholme70f8df2018-03-09 17:43:21 +010035obj-y += efi_watchdog.o
Alexander Grafbe8d3242016-03-15 18:38:21 +010036obj-$(CONFIG_LCD) += efi_gop.o
Rob Clarkca9193d2017-07-21 15:00:27 -040037obj-$(CONFIG_DM_VIDEO) += efi_gop.o
Alexander Grafed980b82016-03-04 01:10:07 +010038obj-$(CONFIG_PARTITIONS) += efi_disk.o
Joe Hershberger092f2f32018-04-13 15:26:39 -050039obj-$(CONFIG_NET) += efi_net.o
Bin Meng86df34d2018-06-27 20:38:03 -070040obj-$(CONFIG_GENERATE_ACPI_TABLE) += efi_acpi.o
Alexander Grafe663b352016-08-19 01:23:29 +020041obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o