blob: d6402c4615faa4e3ae0a8f4e2edfe4c699632790 [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
Alexander Graf3bb74f92017-12-01 22:09:50 +01009CFLAGS_helloworld.o := $(CFLAGS_EFI) -Os -ffreestanding
10CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI) -Os
Simon Glassc7ae3df2016-11-07 08:47:08 -070011
Heinrich Schuchardtc96967e2017-09-05 03:19:39 +020012ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),)
13always += helloworld.efi
14endif
Alexander Graf95b62b22016-11-17 22:40:10 +010015
Simon Glassc7ae3df2016-11-07 08:47:08 -070016obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o
Alexander Grafed980b82016-03-04 01:10:07 +010017obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o
Rob Clarkb66c60d2017-09-13 18:05:28 -040018obj-y += efi_memory.o efi_device_path_to_text.o efi_device_path.o
Leif Lindholme70f8df2018-03-09 17:43:21 +010019obj-y += efi_device_path_utilities.o efi_file.o efi_variable.o efi_bootmgr.o
20obj-y += efi_watchdog.o
Alexander Grafbe8d3242016-03-15 18:38:21 +010021obj-$(CONFIG_LCD) += efi_gop.o
Rob Clarkca9193d2017-07-21 15:00:27 -040022obj-$(CONFIG_DM_VIDEO) += efi_gop.o
Alexander Grafed980b82016-03-04 01:10:07 +010023obj-$(CONFIG_PARTITIONS) += efi_disk.o
Joe Hershberger092f2f32018-04-13 15:26:39 -050024obj-$(CONFIG_NET) += efi_net.o
Bin Meng86df34d2018-06-27 20:38:03 -070025obj-$(CONFIG_GENERATE_ACPI_TABLE) += efi_acpi.o
Alexander Grafe663b352016-08-19 01:23:29 +020026obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += efi_smbios.o