hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# SPDX-License-Identifier: GPL-2.0
# ==========================================================================
# Installing dtb files
#
# Installs all dtb files listed in $(dtb-y) either in the
# INSTALL_DTBS_PATH directory or the default location:
#
#   $INSTALL_PATH/dtbs/$KERNELRELEASE
# ==========================================================================
 
src := $(obj)
 
PHONY := __dtbs_install
__dtbs_install:
 
include include/config/auto.conf
include scripts/Kbuild.include
include $(src)/Makefile
 
dtbs    := $(addprefix $(dst)/, $(dtb-y) $(if $(CONFIG_OF_ALL_DTBS),$(dtb-)))
dtbos   := $(addprefix $(dst)/, $(dtbo-y))
readmes := $(addprefix $(dst)/, $(dtbotxt-y))
subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m))
 
__dtbs_install: $(dtbs) $(dtbos) $(readmes) $(subdirs)
   @:
 
quiet_cmd_dtb_install = INSTALL $@
      cmd_dtb_install = install -D $< $@
 
$(dst)/%.dtb: $(obj)/%.dtb
   $(call cmd,dtb_install)
 
$(dst)/%.dtbo: $(obj)/%.dtbo
   $(call cmd,dtb_install)
 
$(dst)/README.rockchip-overlays: $(src)/README.rockchip-overlays
   $(call cmd,dtb_install)
 
PHONY += $(subdirs)
$(subdirs):
   $(Q)$(MAKE) $(dtbinst)=$@ dst=$(patsubst $(obj)/%,$(dst)/%,$@)
 
.PHONY: $(PHONY)