mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
862f464a54
This adds the dtbs_install make target to arm64. The target has been
introduced already to arch/arm with the following commit:
f4d4ffc03e
kbuild: dtbs_install: new make target
Implementation for arm64 is the same as for arm.
With 'dtbs_install' all config enabled dtb files are installed to
either the INSTALL_DTBS_PATH directory or the default location:
$INSTALL_PATH/dtbs/$KERNELRELEASE
Signed-off-by: Robert Richter <rrichter@cavium.com>
13 lines
317 B
Makefile
13 lines
317 B
Makefile
dtb-$(CONFIG_ARCH_THUNDER) += thunder-88xx.dtb
|
|
dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb
|
|
dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb
|
|
|
|
targets += dtbs dtbs_install
|
|
targets += $(dtb-y)
|
|
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
|
|
clean-files := *.dtb
|
|
|
|
dtbs_install: $(addsuffix _dtbinst_, $(dtb-y))
|