mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-01 11:24:25 +08:00
c00758387c
The testcases.dts has purposely bad data which now generates a dtc warning: drivers/of/unittest-data/testcases.dtb: Warning (interrupts_property): interrupts size is (4), expected multiple of 8 in /testcase-data/testcase-device2 Disable this warning for now. The proper solution is to split the unit tests into good and bad data. Signed-off-by: Rob Herring <robh@kernel.org>
29 lines
682 B
Makefile
29 lines
682 B
Makefile
DTC_FLAGS_testcases := -Wno-interrupts_property
|
|
obj-y += testcases.dtb.o
|
|
|
|
targets += testcases.dtb testcases.dtb.S
|
|
|
|
ifdef CONFIG_OF_OVERLAY
|
|
|
|
obj-y += overlay.dtb.o
|
|
obj-y += overlay_bad_phandle.dtb.o
|
|
obj-y += overlay_bad_symbol.dtb.o
|
|
obj-y += overlay_base.dtb.o
|
|
|
|
targets += overlay.dtb overlay.dtb.S
|
|
targets += overlay_bad_phandle.dtb overlay_bad_phandle.dtb.S
|
|
targets += overlay_bad_symbol.dtb overlay_bad_symbol.dtb.S
|
|
targets += overlay_base.dtb overlay_base.dtb.S
|
|
|
|
# enable creation of __symbols__ node
|
|
DTC_FLAGS_overlay := -@
|
|
DTC_FLAGS_overlay_bad_phandle := -@
|
|
DTC_FLAGS_overlay_bad_symbol := -@
|
|
DTC_FLAGS_overlay_base := -@
|
|
|
|
endif
|
|
|
|
.PRECIOUS: \
|
|
$(obj)/%.dtb.S \
|
|
$(obj)/%.dtb
|