同步操作将从 minknov/kernel 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# SPDX-License-Identifier: GPL-2.0-only# ===========================================================================# Module final link# ===========================================================================PHONY := __modfinal__modfinal:include include/config/auto.confinclude $(srctree)/scripts/Kbuild.include# for c_flags and objtool_argsinclude $(srctree)/scripts/Makefile.lib# find all modules listed in modules.ordermodules := $(sort $(shell cat $(MODORDER)))__modfinal: $(modules)@:# modname and part-of-module are set to make c_flags define proper module flagsmodname = $(notdir $(@:.mod.o=))part-of-module = yquiet_cmd_cc_o_c = CC [M] $@cmd_cc_o_c = $(CC) $(filter-out $(CC_FLAGS_CFI), $(c_flags)) -c -o $@ $<%.mod.o: %.mod.c FORCE$(call if_changed_dep,cc_o_c)ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)ifdef CONFIG_LTO_CLANG# With CONFIG_LTO_CLANG, reuse the object file we compiled for modpost to# avoid a second slow LTO linkprelink-ext := .lto# ELF processing was skipped earlier because we didn't have native code,# so let's now process the prelinked binary before we link the module.ifdef CONFIG_STACK_VALIDATIONifneq ($(SKIP_STACK_VALIDATION),1)cmd_ld_ko_o += \$(objtree)/tools/objtool/objtool $(objtool_args) \$(@:.ko=$(prelink-ext).o);endif # SKIP_STACK_VALIDATIONendif # CONFIG_STACK_VALIDATIONendif # CONFIG_LTO_CLANGquiet_cmd_ld_ko_o = LD [M] $@cmd_ld_ko_o += \$(LD) -r $(KBUILD_LDFLAGS) \$(KBUILD_LDFLAGS_MODULE) $(LDFLAGS_MODULE) \-T scripts/module.lds -o $@ $(filter %.o, $^); \$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)quiet_cmd_btf_ko = BTF [M] $@cmd_btf_ko = \if [ -f vmlinux ]; then \LLVM_OBJCOPY=$(OBJCOPY) $(PAHOLE) -J --btf_base vmlinux $@; \else \printf "Skipping BTF generation for %s due to unavailability of vmlinux\n" $@ 1>&2; \fi;# Same as newer-prereqs, but allows to exclude specified extra dependenciesnewer_prereqs_except = $(filter-out $(PHONY) $(1),$?)# Same as if_changed, but allows to exclude specified extra dependenciesif_changed_except = $(if $(call newer_prereqs_except,$(2))$(cmd-check), \$(cmd); \printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)# Re-generate module BTFs if either module's .ko or vmlinux changed$(modules): %.ko: %$(prelink-ext).o %.mod.o scripts/module.lds $(if $(KBUILD_BUILTIN),vmlinux) FORCE+$(call if_changed_except,ld_ko_o,vmlinux)ifdef CONFIG_DEBUG_INFO_BTF_MODULES+$(if $(newer-prereqs),$(call cmd,btf_ko))endiftargets += $(modules) $(modules:.ko=.mod.o)# Add FORCE to the prequisites of a target to force it to be always rebuilt.# ---------------------------------------------------------------------------PHONY += FORCEFORCE:# Read all saved command lines and dependencies for the $(targets) we# may be building above, using $(if_changed{,_dep}). As an# optimization, we don't need to read them if the target does not# exist, we will rebuild anyway in that case.existing-targets := $(wildcard $(sort $(targets)))-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd).PHONY: $(PHONY)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。