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 | |
Alexander Graf | 8b86ad6 | 2017-12-01 22:09:50 +0100 | [diff] [blame] | 9 | CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding |
| 10 | CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI) -Os |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 11 | |
Heinrich Schuchardt | e9db7c9 | 2017-09-05 03:19:39 +0200 | [diff] [blame] | 12 | ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) |
| 13 | always += helloworld.efi |
| 14 | endif |
Alexander Graf | b548351 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 15 | |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 16 | obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o |
Alexander Graf | 67ee705 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 17 | 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] | 18 | 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] | 19 | obj-y += efi_device_path_utilities.o efi_file.o efi_variable.o efi_bootmgr.o |
| 20 | obj-y += efi_watchdog.o |
Alexander Graf | d65783d | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 21 | obj-$(CONFIG_LCD) += efi_gop.o |
Rob Clark | 92cec96 | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 22 | obj-$(CONFIG_DM_VIDEO) += efi_gop.o |
Alexander Graf | 67ee705 | 2016-03-04 01:10:07 +0100 | [diff] [blame] | 23 | obj-$(CONFIG_PARTITIONS) += efi_disk.o |
Joe Hershberger | 5277a97 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 24 | obj-$(CONFIG_NET) += efi_net.o |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 25 | obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o |