From 0ac12d3cd499350df4e8e09aac73b0c42a6419b2 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 777c38210..041f61c93 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))