]>
Commit | Line | Data |
---|---|---|
9fb5e537 RR |
1 | # ========================================================================== |
2 | # Installing dtb files | |
3 | # | |
4 | # Installs all dtb files listed in $(dtb-y) either in the | |
5 | # INSTALL_DTBS_PATH directory or the default location: | |
6 | # | |
7 | # $INSTALL_PATH/dtbs/$KERNELRELEASE | |
8 | # | |
323a028d | 9 | # Traverse through subdirectories listed in $(dts-dirs). |
9fb5e537 RR |
10 | # ========================================================================== |
11 | ||
12 | src := $(obj) | |
13 | ||
14 | PHONY := __dtbs_install | |
15 | __dtbs_install: | |
16 | ||
323a028d RR |
17 | export dtbinst-root ?= $(obj) |
18 | ||
9fb5e537 RR |
19 | include include/config/auto.conf |
20 | include scripts/Kbuild.include | |
5f655c7a | 21 | include $(src)/Makefile |
9fb5e537 | 22 | |
9fb5e537 | 23 | dtbinst-files := $(dtb-y) |
323a028d | 24 | dtbinst-dirs := $(dts-dirs) |
9fb5e537 RR |
25 | |
26 | # Helper targets for Installing DTBs into the boot directory | |
27 | quiet_cmd_dtb_install = INSTALL $< | |
323a028d RR |
28 | cmd_dtb_install = mkdir -p $(2); cp $< $(2) |
29 | ||
30 | install-dir = $(patsubst $(dtbinst-root)%,$(INSTALL_DTBS_PATH)%,$(obj)) | |
31 | ||
323a028d RR |
32 | $(dtbinst-files): %.dtb: $(obj)/%.dtb |
33 | $(call cmd,dtb_install,$(install-dir)) | |
9fb5e537 | 34 | |
323a028d RR |
35 | $(dtbinst-dirs): |
36 | $(Q)$(MAKE) $(dtbinst)=$(obj)/$@ | |
9fb5e537 | 37 | |
323a028d RR |
38 | PHONY += $(dtbinst-files) $(dtbinst-dirs) |
39 | __dtbs_install: $(dtbinst-files) $(dtbinst-dirs) | |
9fb5e537 RR |
40 | |
41 | .PHONY: $(PHONY) |