aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Rutland <mark.rutland@arm.com>2022-01-19 11:52:33 +0000
committerMark Rutland <mark.rutland@arm.com>2022-01-19 11:52:49 +0000
commit0607f1669cd66442cc956ff174db679971e14613 (patch)
tree6d0cbba0f8ebf05e8fac1c29bef3072754e477a4
parent9aa732349371056da2ca90b03468bc1c8e0016e2 (diff)
downloadboot-wrapper-aarch64-0607f1669cd66442cc956ff174db679971e14613.tar.gz
Revert "avoid dtc warnings on re-compiling DTB"
As Vladimir Murzin reports in: https://lore.kernel.org/linux-arm-kernel/706471d8-a0fd-35fb-4fa0-380bfb1b78e7@arm.com/ Older version of dtc don't support the options to suprress the warnings, and so where people are stuck with said versions of dtc, using those options results in a build failure rather than an ignoreable build warning. For now, let's revert the warning suppression. In future we can try to do something smarter. This reverts commit 1044c77062573985f7c994c3b6cef5695f57e955. Signed-off-by: Mark Rutland <mark.rutland@arm.com>
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index c621707..5731a19 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -162,7 +162,7 @@ model.lds: $(LD_SCRIPT) Makefile
$(CPP) $(CPPFLAGS) -ansi -DPHYS_OFFSET=$(PHYS_OFFSET) -DMBOX_OFFSET=$(MBOX_OFFSET) -DKERNEL_OFFSET=$(KERNEL_OFFSET) -DFDT_OFFSET=$(FDT_OFFSET) -DFS_OFFSET=$(FS_OFFSET) $(XEN) -DXEN_OFFSET=$(XEN_OFFSET) -DKERNEL=$(KERNEL_IMAGE) -DFILESYSTEM=$(FILESYSTEM) -DTEXT_LIMIT=$(TEXT_LIMIT) -P -C -o $@ $<
fdt.dtb: $(KERNEL_DTB) Makefile
- ( $(DTC) -O dts -I dtb $(KERNEL_DTB) ; echo "/ { $(CHOSEN_NODE) $(PSCI_NODE) }; $(CPU_NODES)" ) | $(DTC) -O dtb -o $@ -Wno-clocks_property -Wno-gpios_property -
+ ( $(DTC) -O dts -I dtb $(KERNEL_DTB) ; echo "/ { $(CHOSEN_NODE) $(PSCI_NODE) }; $(CPU_NODES)" ) | $(DTC) -O dtb -o $@ -
# The filesystem archive might not exist if INITRD is not being used
.PHONY: all clean $(FILESYSTEM)