diff options
author | Jonathan Humphreys <j-humphreys@ti.com> | 2024-06-13 15:27:52 -0500 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-07-14 09:56:24 +0200 |
commit | 809141812e701d11651edb87d6332748d6289151 (patch) | |
tree | 2e94fd199bd8a1bd88cee36ab8aa632430efb078 /scripts | |
parent | b182816c1fb436916661949213c543bf4d42250b (diff) | |
download | u-boot-809141812e701d11651edb87d6332748d6289151.tar.gz |
scripts/Makefile.lib: fixes: Embed capsule public key in platform's dtb
The call to cmd_capsule_esl_gen was made directly rather than using the
"cmd,xxx" syntax.
Fixes: c7d4dfcd ("scripts/Makefile.lib: Embed capsule public key in
platform's dtb")
Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 3e68d5aa803..d3c95f3446f 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -351,7 +351,7 @@ ifeq ($(CONFIG_EFI_CAPSULE_ESL_FILE),"") $(error "CONFIG_EFI_CAPSULE_ESL_FILE is empty, EFI capsule authentication \ public key must be specified when CONFIG_EFI_CAPSULE_AUTHENTICATE is enabled") else - $(call cmd_capsule_esl_gen) + $(call cmd,capsule_esl_gen) endif capsule_esl_input_file=$(srctree)/lib/efi_loader/capsule_esl.dtsi.in |