* [PATCH] scripts/config: honor $KBUILD_OUTPUT by default
@ 2026-09-20 6:43 Dmitry Voytik
2026-09-20 7:41 ` [PATCH v2] " Dmitry Voytik
0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Voytik @ 2026-09-20 6:43 UTC (permalink / raw)
To: Nicolas Schier, Nathan Chancellor
Cc: Rong Zhang, linux-kernel, linux-kbuild, Dmitry Voytik
If $KBUILD_OUTPUT is set, use it by default if --file is not passed.
Fix the issue when the script silently updates a stale .config in
the root directory, while the user expects ${KBUILD_OUTPUT}/.config
to be updated.
The problem can be worked around with --file, but this is easy to miss,
and is inconsistent with how the Makefile and other tools work
(e.g., scripts/diffconfig).
Signed-off-by: Dmitry Voytik <voytikd@gmail.com>
---
scripts/config | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/scripts/config b/scripts/config
index 32428ea909c2..f52ba5e6e27e 100755
--- a/scripts/config
+++ b/scripts/config
@@ -130,6 +130,11 @@ on_exit() {
trap on_exit EXIT
FN=.config
+if [ -n "${KBUILD_OUTPUT}" ]; then
+ FN=${KBUILD_OUTPUT}/${FN}
+ echo "Using ${FN}"
+fi
+
CMDS=()
while [[ $# -gt 0 ]]; do
if [ "$1" = "--file" ]; then
--
2.55.0
^ permalink raw reply [flat|nested] 2+ messages in thread* [PATCH v2] scripts/config: honor $KBUILD_OUTPUT by default
2026-09-20 6:43 [PATCH] scripts/config: honor $KBUILD_OUTPUT by default Dmitry Voytik
@ 2026-09-20 7:41 ` Dmitry Voytik
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Voytik @ 2026-09-20 7:41 UTC (permalink / raw)
To: Nicolas Schier, Nathan Chancellor
Cc: Rong Zhang, linux-kernel, linux-kbuild, Dmitry Voytik
If $KBUILD_OUTPUT is set, use it by default if --file is not passed.
Fix the issue when the script silently updates a stale .config in
the root directory, while the user expects ${KBUILD_OUTPUT}/.config
to be updated.
The problem can be worked around with --file, but this is easy to miss,
and is inconsistent with how the Makefile and other tools work
(e.g., scripts/diffconfig).
Signed-off-by: Dmitry Voytik <voytikd@gmail.com>
---
v2:
- Addressed comments by sashiko:
- https://sashiko.dev/#/patchset/20260920064350.17999-1-voytikd%40gmail.com
- use basename when --refresh is used
- remove echo which can be misleading when --file is passed
v1:
- https://lore.kernel.org/all/20260920064350.17999-1-voytikd@gmail.com/
---
scripts/config | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/scripts/config b/scripts/config
index 32428ea909c2..cdee67157fe1 100755
--- a/scripts/config
+++ b/scripts/config
@@ -130,6 +130,10 @@ on_exit() {
trap on_exit EXIT
FN=.config
+if [ -n "${KBUILD_OUTPUT}" ]; then
+ FN=${KBUILD_OUTPUT}/${FN}
+fi
+
CMDS=()
while [[ $# -gt 0 ]]; do
if [ "$1" = "--file" ]; then
@@ -229,7 +233,7 @@ while [ "$1" != "" ] ; do
;;
--refresh)
- yes "" | make oldconfig KCONFIG_CONFIG=$FN
+ yes "" | make oldconfig KCONFIG_CONFIG=$(basename $FN)
;;
*)
--
2.55.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-20 7:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-20 6:43 [PATCH] scripts/config: honor $KBUILD_OUTPUT by default Dmitry Voytik
2026-09-20 7:41 ` [PATCH v2] " Dmitry Voytik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®