From: Andrew Davis Date: Mon, 6 Mar 2023 22:47:52 +0000 (-0600) Subject: kbuild: Disallow DTB overlays to built from .dts named source files X-Git-Tag: v6.6.17~4485^2~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81d362732bac05f656cdc4bbe776ac20cfd30c45;p=platform%2Fkernel%2Flinux-rpi.git kbuild: Disallow DTB overlays to built from .dts named source files As a follow up to the series allowing DTB overlays to built from .dtso files. Now that all overlays have been renamed, remove the ability to build from overlays from .dts files to prevent any files with the old name from accidental being added. Signed-off-by: Andrew Davis Reviewed-by: Geert Uytterhoeven Acked-by: Andy Shevchenko Signed-off-by: Masahiro Yamada --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 100a386..68d0134 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -418,9 +418,6 @@ endif $(obj)/%.dtb: $(src)/%.dts $(DTC) $(DT_TMP_SCHEMA) FORCE $(call if_changed_dep,dtb) -$(obj)/%.dtbo: $(src)/%.dts $(DTC) FORCE - $(call if_changed_dep,dtc) - $(obj)/%.dtbo: $(src)/%.dtso $(DTC) FORCE $(call if_changed_dep,dtc)