Skip to content

Commit 75e8953

Browse files
committed
Revert "kbuild: Enable DT schema checks for %.dtb targets"
This reverts commit 53182e8. This added tool dependencies on various build systems using %.dtb targets. Validation will need to be controlled by a kconfig or make variable instead, but for now let's just revert it. Signed-off-by: Rob Herring <robh@kernel.org>
1 parent 656eb41 commit 75e8953

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,17 +1374,17 @@ endif
13741374

13751375
ifneq ($(dtstree),)
13761376

1377-
%.dtb: dt_binding_check include/config/kernel.release scripts_dtc
1378-
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@ $(dtstree)/$*.dt.yaml
1377+
%.dtb: include/config/kernel.release scripts_dtc
1378+
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
13791379

1380-
%.dtbo: dt_binding_check include/config/kernel.release scripts_dtc
1381-
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@ $(dtstree)/$*.dt.yaml
1380+
%.dtbo: include/config/kernel.release scripts_dtc
1381+
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
13821382

13831383
PHONY += dtbs dtbs_install dtbs_check
13841384
dtbs: include/config/kernel.release scripts_dtc
13851385
$(Q)$(MAKE) $(build)=$(dtstree)
13861386

1387-
ifneq ($(filter dtbs_check %.dtb %.dtbo, $(MAKECMDGOALS)),)
1387+
ifneq ($(filter dtbs_check, $(MAKECMDGOALS)),)
13881388
export CHECK_DTBS=y
13891389
dtbs: dt_binding_check
13901390
endif

0 commit comments

Comments
 (0)