Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | 67ee705 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2016 Alexander Graf |
| 4 | # |
Alexander Graf | 67ee705 | 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 | 27685f7 | 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 | 8b86ad6 | 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 | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 14 | |
Heinrich Schuchardt | e9db7c9 | 2017-09-05 03:19:39 +0200 | [diff] [blame] | 15 | ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) |
| 16 | always += helloworld.efi |
| 17 | endif |
Alexander Graf | b548351 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 18 | |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 19 | obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o |
Alexander Graf | 67ee705 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 20 | obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 21 | obj-y += efi_memory.o efi_device_path_to_text.o efi_device_path.o |
Leif Lindholm | b6e6fdc | 2018-03-09 17:43:21 +0100 | [diff] [blame] | 22 | obj-y += efi_device_path_utilities.o efi_file.o efi_variable.o efi_bootmgr.o |
| 23 | obj-y += efi_watchdog.o |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 24 | obj-$(CONFIG_LCD) += efi_gop.o |
Rob Clark | 92cec96 | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 25 | obj-$(CONFIG_DM_VIDEO) += efi_gop.o |
Alexander Graf | 67ee705 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 26 | obj-$(CONFIG_PARTITIONS) += efi_disk.o |
Joe Hershberger | 5277a97 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 27 | obj-$(CONFIG_NET) += efi_net.o |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 28 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += efi_acpi.o |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 29 | obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o |