From 355e93a94ebe8167e317b79f0d16d674aba9ffe4 Mon Sep 17 00:00:00 2001 From: Mecid Date: Fri, 29 May 2026 20:32:49 +0200 Subject: [PATCH] Add rewrite-kernel-config command to Build commands Added 'rewrite-kernel-config' command to validate kernel config changes and ensure persistence in CI. --- docs/Developer-Guide_Build-Commands.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/Developer-Guide_Build-Commands.md b/docs/Developer-Guide_Build-Commands.md index e03d9f87..36cdb7d2 100644 --- a/docs/Developer-Guide_Build-Commands.md +++ b/docs/Developer-Guide_Build-Commands.md @@ -18,6 +18,15 @@ Usage: ./compile.sh kernel-config BOARD=nanopi-r5c BRANCH=edge ``` +### rewrite-kernel-config + +Automatically validates kernel config changes and dependency chains. After manually editing the config for a given family and branch this is needed to ensure the config change will persist our CI. + +Usage: +```bash +./compile.sh rewrite-kernel-config BOARD=xxxxx BRANCH=current +``` + ### dts-check Validate dts files and improve board & patch development overall.