mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Since commit 5399eb9b39 ("dtbsinstall: don't move target directory
out of the way"), the target __dtbs_install_prep is invoked just for
creating the install directory, but all the necessary directories
are automatically created by:
   cmd_dtb_install = mkdir -p $(2); cp $< $(2)
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
	
			
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
# ==========================================================================
 | 
						|
# 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
 | 
						|
#
 | 
						|
# Traverse through subdirectories listed in $(dts-dirs).
 | 
						|
# ==========================================================================
 | 
						|
 | 
						|
src := $(obj)
 | 
						|
 | 
						|
PHONY := __dtbs_install
 | 
						|
__dtbs_install:
 | 
						|
 | 
						|
export dtbinst-root ?= $(obj)
 | 
						|
 | 
						|
include include/config/auto.conf
 | 
						|
include scripts/Kbuild.include
 | 
						|
include $(src)/Makefile
 | 
						|
 | 
						|
dtbinst-files	:= $(dtb-y)
 | 
						|
dtbinst-dirs	:= $(dts-dirs)
 | 
						|
 | 
						|
# Helper targets for Installing DTBs into the boot directory
 | 
						|
quiet_cmd_dtb_install =	INSTALL $<
 | 
						|
      cmd_dtb_install =	mkdir -p $(2); cp $< $(2)
 | 
						|
 | 
						|
install-dir = $(patsubst $(dtbinst-root)%,$(INSTALL_DTBS_PATH)%,$(obj))
 | 
						|
 | 
						|
$(dtbinst-files): %.dtb: $(obj)/%.dtb
 | 
						|
	$(call cmd,dtb_install,$(install-dir))
 | 
						|
 | 
						|
$(dtbinst-dirs):
 | 
						|
	$(Q)$(MAKE) $(dtbinst)=$(obj)/$@
 | 
						|
 | 
						|
PHONY += $(dtbinst-files) $(dtbinst-dirs)
 | 
						|
__dtbs_install: $(dtbinst-files) $(dtbinst-dirs)
 | 
						|
 | 
						|
.PHONY: $(PHONY)
 |