diff options
| author | Tomasz Maciej Nowak | 2025-07-13 12:51:26 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-07-13 15:18:15 +0000 |
| commit | 3669874b4e13ff9bcf6cf4580fe51d20d5a94bd2 (patch) | |
| tree | 36af358839a25038eaea88a919d52ad7a2b6166d | |
| parent | 058bd6c9d3a058206f1b8eb9f229d5793eea1df4 (diff) | |
| download | openwrt-3669874b4e13ff9bcf6cf4580fe51d20d5a94bd2.tar.gz | |
uboot-tegra: disable mkeficapsule build
Host default environment doesn't provide/require gnutls headers needed
for building mkeficapsule tools, and as tegra target doesn't require EFI
capability, disable the build of mentioned tool.
Fixes: 92cd360aacd6 ("uboot-tegra: bump version to 2025.04")
Signed-off-by: Tomasz Maciej Nowak <tmn505@gmail.com>
Link: https://patchwork.ozlabs.org/project/openwrt/patch/20250713125126.215092-1-tmn505@terefe.re/
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/boot/uboot-tegra/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/boot/uboot-tegra/Makefile b/package/boot/uboot-tegra/Makefile index 4d47a764fb..d34b11b645 100644 --- a/package/boot/uboot-tegra/Makefile +++ b/package/boot/uboot-tegra/Makefile @@ -34,6 +34,8 @@ endef UBOOT_TARGETS := trimslice +UBOOT_CUSTOMIZE_CONFIG := --disable TOOLS_MKEFICAPSULE + define Build/bct-image $(CP) $(PKG_BUILD_DIR)/u-boot-dtb-tegra.bin $(PKG_BUILD_DIR)/u-boot.bin $(foreach bct,$(basename $(UBOOT_IMAGE)), \ |