generate_extra_images: Look for 3.10 dtbs
The dtbs have changed location between 3.4 and 3.10. Look for the new location first and fallback to the 3.4 location if they're missing. Change-Id: I7aada8dbcf01ea6f62b3235b452c9329cd69e5e8
This commit is contained in:
parent
65f77681f0
commit
b9906fe4f1
|
@ -84,9 +84,12 @@ DTBTOOL := $(HOST_OUT_EXECUTABLES)/dtbTool$(HOST_EXECUTABLE_SUFFIX)
|
|||
|
||||
INSTALLED_DTIMAGE_TARGET := $(PRODUCT_OUT)/dt.img
|
||||
|
||||
possible_dtb_dirs = $(KERNEL_OUT)/arch/arm/boot/dts/ $(KERNEL_OUT)/arch/arm/boot/
|
||||
dtb_dir = $(firstword $(wildcard $(possible_dtb_dirs)))
|
||||
|
||||
define build-dtimage-target
|
||||
$(call pretty,"Target dt image: $(INSTALLED_DTIMAGE_TARGET)")
|
||||
$(hide) $(DTBTOOL) -o $@ -s $(BOARD_KERNEL_PAGESIZE) -p $(KERNEL_OUT)/scripts/dtc/ $(KERNEL_OUT)/arch/arm/boot/
|
||||
$(hide) $(DTBTOOL) -o $@ -s $(BOARD_KERNEL_PAGESIZE) -p $(KERNEL_OUT)/scripts/dtc/ $(dtb_dir)
|
||||
$(hide) chmod a+r $@
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in New Issue