upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
:
|
|
# (C) Copyright 2017, Heinrich Schuchardt <xypron.glpk@gmx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# This file only gets included with CONFIG_EFI_LOADER set, so all
|
|
# object inclusion implicitly depends on it
|
|
|
|
CFLAGS_efi_selftest.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_console.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_console.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_events.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_events.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_exitbootservices.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_exitbootservices.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_snp.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_snp.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_tpl.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_tpl.o := $(CFLAGS_NON_EFI)
|
|
CFLAGS_efi_selftest_util.o := $(CFLAGS_EFI)
|
|
CFLAGS_REMOVE_efi_selftest_util.o := $(CFLAGS_NON_EFI)
|
|
|
|
obj-$(CONFIG_CMD_BOOTEFI_SELFTEST) += \
|
|
efi_selftest.o \
|
|
efi_selftest_console.o \
|
|
efi_selftest_events.o \
|
|
efi_selftest_exitbootservices.o \
|
|
efi_selftest_snp.o \
|
|
efi_selftest_tpl.o \
|
|
efi_selftest_util.o
|
|
|