dtbs: include/config/kernel.release scripts_dtc $(Q)$(MAKE) $(build)=$(dtstree) ifneq ($(filter dtbs_check, $(MAKECMDGOALS)),) export CHECK_DTBS=y dtbs: dt_binding_check endif dtbs_check: dtbs dtbs_install: $(Q)$(MAKE) $(dtbinst)=$(dtstree) dst=$(INSTALL_DTBS_PATH) ...
ifneq ($(filter dtbs_check, $(MAKECMDGOALS)),) 1410export CHECK_DTBS=y 1411dtbs: dt_binding_check 1412endif 1413 1414dtbs_check: dtbs 1415 1416dtbs_install: 1417 $(Q)$(MAKE) $(dtbinst)=$(dtstree) dst=$(INSTALL_DTBS_PATH) 1418 ...
… export INSTALL_PATH ?= /boot 1. INSTALL_PATH为/boot … export INSTALL_DTBS_PATH ?= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE) 1. INSTALL_DTBS_PATH为/boot/dtbs/5.9.0 … MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 1. MODLIB 为/lib/modules/5.9.0 … PHONY += prepare0 1...
= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE) # # INSTALL_MOD_PATH 为模块目录指定 MODLIB 的前缀 # 构建根所需的重定位。这在中没有定义 # makefile 但如果需要的话可以将参数传递给 make。 # MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) export MODLIB # # INSTALL_MOD_STRIP,如果定义的...
$(MAKE)-j $(MAKE_JOBS) -C $(LINUXKERNEL_INSTALL_DIR) ARCH=arm CROSS_COMPILE=$(CROSS_COMPILE) zImage $(MAKE)-j $(MAKE_JOBS) -C $(LINUXKERNEL_INSTALL_DIR) ARCH=arm CROSS_COMPILE=$(CROSS_COMPILE) modules linux_install: linux-dtbs_install ...
However, we do not want to make # dtbs_install depend on it as dtbs_install may run as root. dtbs_prepare: include/config/kernel.release scripts_dtc ifneq ($(filter dtbs_check, $(MAKECMDGOALS)),) export CHECK_DTBS=y endif ifneq ($(CHECK_DTBS),) dtbs_prepare: dt_binding_sche...
= /boot # # INSTALL_DTBS_PATH specifies a prefix for relocations required by build roots. # Like INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed as # an argument if needed. Otherwise it defaults to the kernel install path # export INSTALL_DTBS_PATH ?= $(...
LICENSES arch block certs crypto drivers fs include init io_uring ipc kernel lib mm net rust samples scripts security sound tools usr virt .clang-format .cocciconfig .editorconfig .get_maintainer.ignore .gitattributes .gitignore .mailmap .rustfmt.toml ...
export INSTALL_PATH ?= /boot# # INSTALL_DTBS_PATH specifies a prefix for relocations required by build roots. # Like INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed as # an argument if needed. Otherwise it defaults to the kernel install path # ...
linux-dtbs- Compiles and creates the device tree blobs. Additional Targets Depending on the capabilities and software available for a given device additional targets may also be defined. You can find the list of all the targets by looking at thealltarget as described in the**Top...