From 667b6fb98697cf53114bf3c0eafb69055a4bc4e3 Mon Sep 17 00:00:00 2001 From: Tobias Deiminger Date: Tue, 20 Jun 2023 00:41:06 +0200 Subject: [PATCH] Kbuild: Fix cleanup of *.dtbo for sandbox sandbox can generate DT overlays, but they were not cleaned. Extend the explicit clean-files list accordingly. Fixes: 6e8c4bb5b76f ("pytest: add sandbox test for "extension" command") Signed-off-by: Tobias Deiminger --- arch/sandbox/dts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sandbox/dts/Makefile b/arch/sandbox/dts/Makefile index b6a88479b2..f810b4752f 100644 --- a/arch/sandbox/dts/Makefile +++ b/arch/sandbox/dts/Makefile @@ -18,4 +18,4 @@ PHONY += dtbs dtbs: $(addprefix $(obj)/, $(dtb-y)) @: -clean-files := *.dtb +clean-files := *.dtb *.dtbo -- 2.39.5