diff mbox series

[RFC,4/6] kconfig-env: generate kconfig environment

Message ID 20250328-kconfig-env-with-ansible-v1-4-3231c0272457@samsung.com (mailing list archive)
State New
Headers show
Series Generate Kconfig environment in Ansible | expand

Commit Message

Daniel Gomez March 28, 2025, 8:56 p.m. UTC
From: Daniel Gomez <da.gomez@samsung.com>

When menuconfig target is run, generate first the kconfig environment
and merge with current .config.

Signed-off-by: Daniel Gomez <da.gomez@samsung.com>
---
 Makefile                         |  1 +
 scripts/kconfig-env.Makefile     | 14 ++++++++++++++
 scripts/kconfig/kconfig.Makefile |  4 ++--
 3 files changed, 17 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 5ee7db7d988b9271fed7cb470f807bb9e9ce3cb6..1f939c52284f218a23430a7c5350d7827cb1b905 100644
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,7 @@  export KDEVOPS_VAGRANT :=
 export PYTHONUNBUFFERED=1
 export TOPDIR=./
 export TOPDIR_PATH = $(shell readlink -f $(TOPDIR))
+include scripts/kconfig-env.Makefile
 include scripts/refs.Makefile
 
 KDEVOPS_NODES_ROLE_TEMPLATE_DIR :=		$(KDEVOPS_PLAYBOOKS_DIR)/roles/gen_nodes/templates
diff --git a/scripts/kconfig-env.Makefile b/scripts/kconfig-env.Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..dc2b9f2a65001ba8698a61bfb20b43b366e3d92a
--- /dev/null
+++ b/scripts/kconfig-env.Makefile
@@ -0,0 +1,14 @@ 
+# SPDX-License-Identifier: copyleft-next-0.3.1
+
+PHONY += kconfig-env
+kconfig-env:
+	$(Q)ANSIBLE_STDOUT_CALLBACK=null ansible-playbook $(ANSIBLE_VERBOSE) --connection=local \
+		--inventory localhost, \
+		playbooks/kconfig.yml \
+		-e 'ansible_python_interpreter=/usr/bin/python3' \
+		--extra-vars "topdir_path=$(TOPDIR_PATH)"
+	$(Q)$(TOPDIR_PATH)/scripts/kconfig/merge_config.sh -m .config \
+	$(TOPDIR_PATH)/.env.config
+	$(Q)$(MAKE) -C $(TOPDIR_PATH) olddefconfig
+
+.PHONY = $(PHONY)
diff --git a/scripts/kconfig/kconfig.Makefile b/scripts/kconfig/kconfig.Makefile
index cc24c7ff3e1c23487aec767075c69fdf3876b39d..19ed56b01db5817dc1e8b7a4db6fa726d87d8065 100644
--- a/scripts/kconfig/kconfig.Makefile
+++ b/scripts/kconfig/kconfig.Makefile
@@ -36,8 +36,8 @@  $(KCONFIG_DIR)/mconf:
 	$(MAKE) -C $(KCONFIG_DIR)/ mconf
 
 PHONY += menuconfig
-menuconfig: $(KCONFIG_DIR)/mconf include/config/project.release Kconfig
-	@$< Kconfig
+menuconfig: $(KCONFIG_DIR)/mconf include/config/project.release Kconfig kconfig-env
+	$< Kconfig
 
 $(KCONFIG_DIR)/nconf:
 	$(MAKE) -C $(KCONFIG_DIR)/ nconf