public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Delete .builtin-dtbs.S when running make clean
@ 2026-03-08  4:43 Charles Mirabile
  2026-03-08  6:34 ` Nicolas Schier
  2026-03-09 20:44 ` Nathan Chancellor
  0 siblings, 2 replies; 3+ messages in thread
From: Charles Mirabile @ 2026-03-08  4:43 UTC (permalink / raw)
  To: linux-kernel
  Cc: Charles Mirabile, linux-kbuild, masahiroy, nathan, nicolas.schier,
	stable

The makefile tries to delete a file named ".builtin-dtb.S" but the file
created by scripts/Makefile.vmlinux is actually called ".builtin-dtbs.S".

Fixes: 654102df2ac2a ("kbuild: add generic support for built-in boot DTBs")
Cc: stable@vger.kernel.org

Signed-off-by: Charles Mirabile <cmirabil@redhat.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index d763c2c75cdbf..4d2a9d938f713 100644
--- a/Makefile
+++ b/Makefile
@@ -1578,7 +1578,7 @@ CLEAN_FILES += vmlinux.symvers modules-only.symvers \
 	       modules.builtin.ranges vmlinux.o.map vmlinux.unstripped \
 	       compile_commands.json rust/test \
 	       rust-project.json .vmlinux.objs .vmlinux.export.c \
-               .builtin-dtbs-list .builtin-dtb.S
+               .builtin-dtbs-list .builtin-dtbs.S
 
 # Directories & files removed with 'make mrproper'
 MRPROPER_FILES += include/config include/generated          \
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-03-09 20:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-08  4:43 [PATCH] Delete .builtin-dtbs.S when running make clean Charles Mirabile
2026-03-08  6:34 ` Nicolas Schier
2026-03-09 20:44 ` Nathan Chancellor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox