diff options
Diffstat (limited to 'roms/u-boot/lib/efi_driver/Makefile')
-rw-r--r-- | roms/u-boot/lib/efi_driver/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roms/u-boot/lib/efi_driver/Makefile b/roms/u-boot/lib/efi_driver/Makefile new file mode 100644 index 000000000..83baa1c9a --- /dev/null +++ b/roms/u-boot/lib/efi_driver/Makefile @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# (C) Copyright 2017 Heinrich Schuchardt + +# This file only gets included with CONFIG_EFI_LOADER set, so all +# object inclusion implicitly depends on it + +obj-y += efi_uclass.o +ifeq ($(CONFIG_BLK)$(CONFIG_PARTITIONS),yy) +obj-y += efi_block_device.o +endif |