From 1d763fce2cb0cd8ac95678a2b1d166d67e798e59 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Tue, 19 Apr 2022 14:14:09 +0200 Subject: [PATCH] boot/shim: disable on mips64el Fix the following build failure on mips64el raised since commit 11b347c03ab0b38389ec11b48f63236a3b4d6547: In file included from shim.h:47, from shim.c:14: /nvmedata/autobuild/instance-17/output-1/build/shim-15.4/include/system/stdarg.h:72:2: error: #error what arch is this 72 | #error what arch is this | ^~~~~ Fixes: - http://autobuild.buildroot.org/results/74f4f1d010cfde6978fd614195ef0006f0acb45a Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard (cherry picked from commit 2fd41e56e0e26fd3f3265f0e0015031211e441cf) Signed-off-by: Peter Korsgaard --- boot/shim/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/shim/Config.in b/boot/shim/Config.in index 2f74d6f332..b0e549a51b 100644 --- a/boot/shim/Config.in +++ b/boot/shim/Config.in @@ -2,6 +2,7 @@ config BR2_TARGET_SHIM bool "shim" # it includes gnu-efi depends on BR2_PACKAGE_GNU_EFI_ARCH_SUPPORTS + depends on !BR2_mips64el help Boot loader to chain-load signed boot loaders under Secure Boot.