@@ -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
new file mode 100644
@@ -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)
@@ -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