⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
lib
/
modules
/
6.11.0-29-generic
/
build
/
scripts
/
View File Name :
Makefile.dtbinst
# 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 # ========================================================================== PHONY := __dtbs_install __dtbs_install: include include/config/auto.conf include $(srctree)/scripts/Kbuild.include dst := $(INSTALL_DTBS_PATH) quiet_cmd_dtb_install = INSTALL $@ cmd_dtb_install = install -D -m 0644 $< $@ $(dst)/%: $(obj)/% $(call cmd,dtb_install) dtbs := $(patsubst $(obj)/%,%,$(call read-file, $(obj)/dtbs-list)) ifdef CONFIG_ARCH_WANT_FLAT_DTB_INSTALL define gen_install_rules $(dst)/%: $(obj)/$(1)% $$(call cmd,dtb_install) endef $(foreach d, $(sort $(dir $(dtbs))), $(eval $(call gen_install_rules,$(d)))) dtbs := $(notdir $(dtbs)) endif # CONFIG_ARCH_WANT_FLAT_DTB_INSTALL __dtbs_install: $(addprefix $(dst)/, $(dtbs)) @: .PHONY: $(PHONY)