diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2020-11-30 18:12:15 +0900 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-12-03 21:22:50 +0100 |
commit | fab430be2f48a61eea470468ec57b0454707e2b4 (patch) | |
tree | 701bff8bc917f6ff5afa910004c3a457a95f14d9 /tools/Makefile | |
parent | 7f35cedfd9f7fe5537e09d9e64ac89dd4f61c515 (diff) | |
download | u-boot-fab430be2f48a61eea470468ec57b0454707e2b4.zip u-boot-fab430be2f48a61eea470468ec57b0454707e2b4.tar.gz u-boot-fab430be2f48a61eea470468ec57b0454707e2b4.tar.bz2 |
tools: add mkeficapsule command for UEFI capsule update
This is a utility mainly for test purpose.
mkeficapsule -f: create a test capsule file for FIT image firmware
Having said that, you will be able to customize the code to fit
your specific requirements for your platform.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 51123fd..66d9376 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -218,6 +218,8 @@ hostprogs-$(CONFIG_MIPS) += mips-relocs hostprogs-$(CONFIG_ASN1_COMPILER) += asn1_compiler HOSTCFLAGS_asn1_compiler.o = -idirafter $(srctree)/include +hostprogs-$(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) += mkeficapsule + # We build some files with extra pedantic flags to try to minimize things # that won't build on some weird host compiler -- though there are lots of # exceptions for files that aren't complaint. |