Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | ed980b8 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2016 Alexander Graf |
| 4 | # |
Alexander Graf | ed980b8 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 5 | |
| 6 | # This file only gets included with CONFIG_EFI_LOADER set, so all |
| 7 | # object inclusion implicitly depends on it |
| 8 | |
Heinrich Schuchardt | 0b38653 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 9 | CFLAGS_efi_boottime.o += \ |
| 10 | -DFW_VERSION="0x$(VERSION)" \ |
| 11 | -DFW_PATCHLEVEL="0x$(PATCHLEVEL)" |
Alexander Graf | 3bb74f9 | 2017-12-01 22:09:50 +0100 | [diff] [blame] | 12 | CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding |
| 13 | CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI) -Os |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 14 | |
Heinrich Schuchardt | c96967e | 2017-09-05 03:19:39 +0200 | [diff] [blame] | 15 | ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) |
| 16 | always += helloworld.efi |
| 17 | endif |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 18 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 19 | obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o |
Heinrich Schuchardt | 0bc4b0d | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 20 | obj-y += efi_bootmgr.o |
| 21 | obj-y += efi_boottime.o |
| 22 | obj-y += efi_console.o |
| 23 | obj-y += efi_device_path.o |
| 24 | obj-y += efi_device_path_to_text.o |
| 25 | obj-y += efi_device_path_utilities.o |
| 26 | obj-y += efi_file.o |
| 27 | obj-y += efi_image_loader.o |
| 28 | obj-y += efi_memory.o |
Heinrich Schuchardt | 4e6b5d6 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 29 | obj-y += efi_root_node.o |
Heinrich Schuchardt | 0bc4b0d | 2018-09-04 19:34:58 +0200 | [diff] [blame] | 30 | obj-y += efi_runtime.o |
| 31 | obj-y += efi_unicode_collation.o |
| 32 | obj-y += efi_variable.o |
Leif Lindholm | e70f8df | 2018-03-09 17:43:21 +0100 | [diff] [blame] | 33 | obj-y += efi_watchdog.o |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 34 | obj-$(CONFIG_LCD) += efi_gop.o |
Rob Clark | ca9193d | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 35 | obj-$(CONFIG_DM_VIDEO) += efi_gop.o |
Alexander Graf | ed980b8 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 36 | obj-$(CONFIG_PARTITIONS) += efi_disk.o |
Joe Hershberger | 092f2f3 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 37 | obj-$(CONFIG_NET) += efi_net.o |
Bin Meng | 86df34d | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 38 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += efi_acpi.o |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 39 | obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o |