From b89f5e3322f04fbdecf61d0eb05e4357868d31e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Tue, 30 Jan 2024 13:36:59 +0100 Subject: [PATCH] Also check kernel custom config file in linux-check-dotconfig (#3126) If BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE is set, it should be also checked by the script for checking that all kernel options are applied. --- buildroot-external/external.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot-external/external.mk b/buildroot-external/external.mk index df052999..145eaf32 100644 --- a/buildroot-external/external.mk +++ b/buildroot-external/external.mk @@ -9,4 +9,4 @@ linux-check-dotconfig: linux-check-configuration-done $(BR2_CHECK_DOTCONFIG_OPTS) \ --src-kconfig $(LINUX_SRCDIR)Kconfig \ --actual-config $(LINUX_SRCDIR).config \ - $(shell echo $(BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES)) + $(shell echo $(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE) $(BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES))