Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 63849340 authored by Dirk Brandewie's avatar Dirk Brandewie Committed by Grant Likely
Browse files

of/powerpc: Use generic rule to build dtb's



Modify arch/powerpc/boot/Makefile to use dtc command in
scripts/Makefile.lib

Signed-off-by: default avatarDirk Brandewie <dirk.brandewie@gmail.com>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent aab94339
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ endif

BOOTCFLAGS	+= -I$(obj) -I$(srctree)/$(obj)

DTS_FLAGS	?= -p 1024
DTC_FLAGS	?= -p 1024

$(obj)/4xx.o: BOOTCFLAGS += -mcpu=405
$(obj)/ebony.o: BOOTCFLAGS += -mcpu=405
@@ -332,10 +332,8 @@ $(obj)/treeImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
	$(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb)

# Rule to build device tree blobs
DTC = $(objtree)/scripts/dtc/dtc

$(obj)/%.dtb: $(dtstree)/%.dts
	$(DTC) -O dtb -o $(obj)/$*.dtb -b 0 $(DTS_FLAGS) $(dtstree)/$*.dts
$(obj)/%.dtb: $(src)/dts/%.dts
	$(call cmd,dtc)

# If there isn't a platform selected then just strip the vmlinux.
ifeq (,$(image-y))