Message ID | 20250328-kconfig-env-with-ansible-v1-0-3231c0272457@samsung.com (mailing list archive) |
---|---|
Headers | show
Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5C9BE3C0C for <kdevops@lists.linux.dev>; Fri, 28 Mar 2025 20:56:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743195391; cv=none; b=Cugt9/hM84K+xYgzKmQA0xamdTqy+N7BCe9771hpUqCbYkwo4iPBDIOkXsA+wWiTTMytGMJekT+kSnTzgBbs67yqV1jy1oas67JmOpk9jePlx2I1oyxK9f7GP0uIAbtQ8fx0LggKTkSA6sKLKT0RB224BilGnO+7eQ+3y2iRr2U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743195391; c=relaxed/simple; bh=yy7GpuO+6f7oV0pv53eVljkroIB+2ysSxrVIsQOSbB4=; h=From:Subject:Date:Message-Id:MIME-Version:Content-Type:To:Cc; b=lYGUVG2SJLYeJ2CCL16FXyfrlnESnKYmZEHt3HjxzXeHlXWuY1esBdTrKt8sdiKxHkhiwz8o4uttNXdEC2/IXa6e1XVzRkI1ubg/mGWXBJ7xj5wwlUFbImp8KOAPbGOi/MHKbLXleJStptsyTrAxRGH561wpQf4NcgjMBMHnW0A= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Ylq/os4u; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Ylq/os4u" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0125DC4CEE4; Fri, 28 Mar 2025 20:56:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743195390; bh=yy7GpuO+6f7oV0pv53eVljkroIB+2ysSxrVIsQOSbB4=; h=From:Subject:Date:To:Cc:From; b=Ylq/os4uL1/gN14wDXaTkYrGrX4emGbpiU4baTITDKhFhdaenx73MtMlV1uRVTcmZ 9AJAcRm/xOHDs5btg9UinCTceaZVjzvfaPDXcjYtN91IQlzHGW4zkz+OCmWEAEHHw8 zbmZTpFIVH8OMGtaZrcEEEY4p6p8qEM6oMZtDumcoIA8Vj4Oz2FvKyNZio+SSTQvNq XgV2JtmOPj4pwPQW2rCVIf5KcEvtyHkSe2GBBxm5Z2cwdRFw3VVi87FBcV79GN0DAb AFxHe1QqC5jIlIqzLGSo+HR8wc8wF5ZRSpOGQpb4m2gMKZT70oI+QQmYok6tmZz2sg i+Q2yfflYPpfg== From: Daniel Gomez <da.gomez@kernel.org> Subject: [PATCH RFC 0/6] Generate Kconfig environment in Ansible Date: Fri, 28 Mar 2025 20:56:13 +0000 Message-Id: <20250328-kconfig-env-with-ansible-v1-0-3231c0272457@samsung.com> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: <kdevops.lists.linux.dev> List-Subscribe: <mailto:kdevops+subscribe@lists.linux.dev> List-Unsubscribe: <mailto:kdevops+unsubscribe@lists.linux.dev> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-B4-Tracking: v=1; b=H4sIAO0M52cC/6tWKk4tykwtVrJSqFYqSi3LLM7MzwNyDHUUlJIzE vPSU3UzU4B8JSMDI1MDYyML3ezk/Ly0zHTd1Lwy3fLMkgzdxLzizKScVF1j41TjZOMk48RUS3M loPaCotS0zAqw0dFKQW7OSrG1tQAOaZi7bwAAAA== X-Change-ID: 20250328-kconfig-env-with-ansible-33e3c3b3ae97 To: Luis Chamberlain <mcgrof@kernel.org> Cc: kdevops@lists.linux.dev, Daniel Gomez <da.gomez@kernel.org>, Daniel Gomez <da.gomez@samsung.com> X-Mailer: b4 0.14.2 |
Series |
Generate Kconfig environment in Ansible
|
expand
|
This is an effort to replace the scripts/* we use from Kconfig to retrieve any possible Kconfig value (y/n/string) with Ansible. I believe this has been discussed a few times on the mailing list, perhaps as a potential idea. This aims to explore whether this approach makes sense and what are the options. The new workflow is: * Run make menuconfig * menuconfig runs kconfig-env target * kconfig-env target calls Ansible kconfig.yml playbook * kconfig.yml playbook generates a Kconfig fragment with the environment (.env.config) * .env.config is merged with .config * make olddefconfig is run to generate a valid .config for menuconfig * menuconfig is shown with the environment generated variables While this adds new targets, it also removes the $shell calls in Kconfig. However, when merging fragments, it appears that hidden symbols cannot be merged and updated in .config, unless these are visible (and therefore editable). So for this reason, a new Environment menu has been created to list all these new vars. Any ideas/suggestion to keep them invisible? Note that only CONFIG_TOPDIR_PATH_SHA256SUM= is generated with Ansible and added/merged to the Kconfig environment menu vars. Thoughts? Signed-off-by: Daniel Gomez <da.gomez@samsung.com> --- Daniel Gomez (6): merge_config: add fragment support from kernel scripts/kconfig/kconfig.Makefile: extend simple-targets kconfig-fragments: add docs and fragments folder kconfig-env: generate kconfig environment kconfig: env: add support playbooks: add kconfig support .gitignore | 2 + Kconfig | 9 +- Makefile | 1 + configs/callback-debug.config | 2 + configs/callback-dense.config | 2 + docs/kconfig-fragments.md | 19 +++ kconfigs/Kconfig.env | 5 + playbooks/kconfig.yml | 6 + playbooks/roles/kconfig/tasks/main.yml | 15 +++ scripts/kconfig-env.Makefile | 14 +++ scripts/kconfig/Makefile | 3 + scripts/kconfig/kconfig.Makefile | 6 +- scripts/kconfig/merge_config.sh | 213 +++++++++++++++++++++++++++++++++ 13 files changed, 289 insertions(+), 8 deletions(-) --- base-commit: f83ea7595cc531e1c5413ffdf7f82714fc8ab7f0 change-id: 20250328-kconfig-env-with-ansible-33e3c3b3ae97 Best regards,