/linux/scripts/package/ |
H A D | buildtar | 48 cp -v -- "${objtree}/System.map" "${tmpdir}/boot/System.map-${KERNELRELEASE}" 50 cp -v -- "${objtree}/vmlinux" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}" 62 cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}" 66 [ -f "${objtree}/lifimage" ] && cp -v -- "${objtree}/lifimage" "${tmpdir}/boot/lifimage-${KERNELRELEASE}" 70 if [ -f "${objtree}/arch/mips/boot/compressed/vmlinux.bin" ]; then 71 cp -v -- "${objtree}/arch/mips/boot/compressed/vmlinux.bin" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}" 72 elif [ -f "${objtree}/arch/mips/boot/compressed/vmlinux.ecoff" ]; then 73 cp -v -- "${objtree}/arch/mips/boot/compressed/vmlinux.ecoff" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}" 74 elif [ -f "${objtree}/arc [all...] |
/linux/scripts/ |
H A D | Makefile.modfinal | 9 include $(objtree)/include/config/auto.conf 35 -T $(objtree)/scripts/module.lds -o $@ $(filter %.o, $^) 39 if [ ! -f $(objtree)/vmlinux ]; then \ 42 LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) $(MODULE_PAHOLE_FLAGS) --btf_base $(objtree)/vmlinux $@; \ 43 $(RESOLVE_BTFIDS) -b $(objtree)/vmlinux $@; \ 55 %.ko: %.o %.mod.o .module-common.o $(objtree)/scripts/module.lds $(and $(CONFIG_DEBUG_INFO_BTF_MODULES),$(KBUILD_BUILTIN),$(objtree)/vmlinux) FORCE 56 +$(call if_changed_except,ld_ko_o,$(objtree)/vmlinux)
|
H A D | Makefile.modpost | 38 include $(objtree)/include/config/auto.conf 41 MODPOST = $(objtree)/scripts/mod/modpost 124 ifeq ($(wildcard $(objtree)/Module.symvers),) 125 missing-input := $(objtree)/Module.symvers 127 modpost-args += -i $(objtree)/Module.symvers 128 modpost-deps += $(objtree)/Module.symvers
|
H A D | generate_rust_analyzer.py | 22 def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs, core_edition): argument 25 with open(objtree / "include" / "generated" / "rustc_cfg") as fd: 56 crate["proc_macro_dylib_path"] = f"{objtree}/rust/{proc_macro_dylib_name}" 133 crates[-1]["env"]["OBJTREE"] = str(objtree.resolve(True)) 137 str(objtree / "rust") 184 parser.add_argument("objtree", type=pathlib.Path) 199 "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs, args.core_edition),
|
H A D | depmod.sh | 15 if ! test -r "${objtree}/System.map" ; then 28 set -- -ae -F "${objtree}/System.map"
|
H A D | Makefile.randstruct | 7 += -fplugin=$(objtree)/scripts/gcc-plugins/randomize_layout_plugin.so 12 += -frandomize-layout-seed-file=$(objtree)/scripts/basic/randstruct.seed
|
H A D | Makefile.build | 33 -include $(objtree)/include/config/auto.conf 192 gendwarfksyms = $(objtree)/scripts/gendwarfksyms/gendwarfksyms \ 196 genksyms = $(objtree)/scripts/genksyms/genksyms \ 254 $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)"; \ 326 OBJTREE=$(abspath $(objtree)) \ 332 --crate-type rlib -L $(objtree)/rust/ \ 448 cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \ 451 $(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler
|
H A D | Makefile.modinst | 9 include $(objtree)/include/config/auto.conf 108 cmd_sign = $(objtree)/scripts/sign-file $(CONFIG_MODULE_SIG_HASH) "$(sig-key)" $(objtree)/certs/signing_key.x509 $@ \
|
H A D | Makefile.package | 139 rm -rf $(objtree)/snap 140 mkdir $(objtree)/snap 145 $(objtree)/snap/snapcraft.yaml 146 cd $(objtree)/snap && \ 154 @ln -srf $(srctree)/scripts/package/PKGBUILD $(objtree)/PKGBUILD 155 +BUILDDIR="$(realpath $(objtree))/pacman" \
|
H A D | Makefile.dtbs | 67 DT_TMP_SCHEMA := $(objtree)/$(DT_BINDING_DIR)/processed-schema.json 82 cmd_fdtoverlay = $(objtree)/scripts/dtc/fdtoverlay -o $@ -i $(filter %.dtb %.dtbo, $^) $(cmd_dtb_check) 91 DTC ?= $(objtree)/scripts/dtc/dtc
|
H A D | generate_initcall_order.pl | 15 my $objtree = $ENV{'objtree'} || '.'; 206 find_initcalls($index, "$objtree/$file");
|
H A D | link-vmlinux.sh | 94 ldflags="${ldflags} ${wl}--script=${objtree}/${KBUILD_LDS}" 178 ${objtree}/scripts/sorttable -s .tmp_vmlinux.nm-sort ${1}
|
/linux/arch/x86/tools/ |
H A D | Makefile | 20 cmd_posttest = $(OBJDUMP) -d -j .text $(objtree)/vmlinux | $(AWK) -f $(reformatter) | $(obj)/insn_decoder_test $(posttest_64bit) $(posttest_verbose) 32 HOSTCFLAGS_insn_decoder_test.o := -Wall -I$(srctree)/tools/arch/x86/lib/ -I$(srctree)/tools/arch/x86/include/ -I$(objtree)/arch/x86/lib/ 34 HOSTCFLAGS_insn_sanity.o := -Wall -I$(srctree)/tools/arch/x86/lib/ -I$(srctree)/tools/arch/x86/include/ -I$(objtree)/arch/x86/lib/ 37 $(obj)/insn_decoder_test.o: $(srctree)/tools/arch/x86/lib/insn.c $(srctree)/tools/arch/x86/lib/inat.c $(srctree)/tools/arch/x86/include/asm/inat_types.h $(srctree)/tools/arch/x86/include/asm/inat.h $(srctree)/tools/arch/x86/include/asm/insn.h $(objtree)/arch/x86/lib/inat-tables.c 39 $(obj)/insn_sanity.o: $(srctree)/tools/arch/x86/lib/insn.c $(srctree)/tools/arch/x86/lib/inat.c $(srctree)/tools/arch/x86/include/asm/inat_types.h $(srctree)/tools/arch/x86/include/asm/inat.h $(srctree)/tools/arch/x86/include/asm/insn.h $(objtree)/arch/x86/lib/inat-tables.c
|
/linux/arch/mips/boot/compressed/ |
H A D | Makefile | 108 $(objtree)/vmlinuz: $(src)/ld.script $(vmlinuzobjs-y) $(obj)/calc_vmlinuz_load_addr 112 objboot := $(objtree)/arch/mips/boot 114 $(objboot)/vmlinuz: $(objtree)/vmlinuz FORCE 127 VMLINUZ = $(objtree)/vmlinuz 137 $(objboot)/vmlinuz.32: $(objtree)/vmlinuz 152 $(objboot)/vmlinuz.bin: $(objtree)/vmlinuz 159 $(objboot)/vmlinuz.srec: $(objtree)/vmlinuz 205 env PATH="$(objtree)/scripts/dtc:$(PATH)" \ 208 --include $(objtree)/arch/mips \
|
/linux/arch/mips/tools/ |
H A D | generic-board-config.sh | 23 objtree="$2" 82 -m -O ${objtree} ${cfg} ${board_cfg} \
|
/linux/ |
H A D | Makefile | 186 objtree := $(realpath $(KBUILD_OUTPUT)) macro 187 $(if $(objtree),,$(error specified kernel directory "$(KBUILD_OUTPUT)" does not exist)) 189 objtree := $(abs_srctree) macro 195 output := $(or $(KBUILD_EXTMOD_OUTPUT),$(if $(filter $(CURDIR),$(objtree) $(abs_srctree)),$(KBUILD_EXTMOD))) 201 objtree := . macro 205 export objtree srcroot 379 KERNELRELEASE = $(call read-file, $(objtree)/include/config/kernel.release) 536 RESOLVE_BTFIDS = $(objtree)/tools/bpf/resolve_btfids/resolve_btfids 569 -I$(objtree)/arch/$(SRCARCH)/include/generated/uapi \ 571 -I$(objtree)/includ [all...] |
/linux/arch/parisc/boot/compressed/ |
H A D | Makefile | 35 AFLAGS_head.o += -I$(objtree)/$(obj) -DBOOTLOADER 38 CFLAGS_misc.o += -I$(objtree)/$(obj) 43 CPPFLAGS_vmlinux.lds += -I$(objtree)/$(obj) -DBOOTLOADER
|
/linux/arch/um/ |
H A D | Makefile | 74 -idirafter $(objtree)/include -D__KERNEL__ -D__UM_HOST__ \ 83 -I$(objtree)/$(HOST_DIR)/include/generated \ 84 -I$(objtree)/$(HOST_DIR)/include/generated/uapi
|
/linux/arch/x86/ |
H A D | Makefile | 78 KBUILD_RUSTFLAGS += --target=$(objtree)/scripts/target.json 321 $(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot 322 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@ 358 $(Q)rm -rf $(objtree)/arch/i386 359 $(Q)rm -rf $(objtree)/arch/x86_64
|
/linux/drivers/scsi/aic7xxx/ |
H A D | Makefile | 62 $(aic7xxx-gen-y): $(objtree)/$(obj)/aic7xxx_seq.h 80 $(aic79xx-gen-y): $(objtree)/$(obj)/aic79xx_seq.h
|
/linux/tools/testing/selftests/nolibc/ |
H A D | Makefile.nolibc | 16 objtree := $(O) 18 objtree ?= $(srctree) 96 IMAGE = $(objtree)/$(IMAGE_$(XARCH)) 335 $(QUIET_GEN)echo 'file /init nolibc-test 755 0 0' | $(objtree)/usr/gen_init_cpio - > initramfs.cpio 345 $(srctree)/scripts/config --file $(objtree)/.config $(EXTRACONFIG); \
|
/linux/arch/mips/ |
H A D | Makefile | 283 entry-y = $(shell $(objtree)/arch/mips/tools/elf-entry vmlinux) 524 -m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/generic_defconfig $^ | \ 526 $(Q)cp $(KCONFIG_CONFIG) $(objtree)/.config.$@ 528 KCONFIG_CONFIG=$(objtree)/.config.$@ >/dev/null 530 $(srctree) $(objtree) $(objtree)/.config.$@ $(KCONFIG_CONFIG) \
|
/linux/Documentation/translations/zh_CN/kbuild/ |
H A D | kbuild.rst | 237 $(objtree)/usr 239 $(objtree) 是保存输出文件的目录。
|
/linux/scripts/selinux/mdp/ |
H A D | Makefile | 5 -I$(srctree)/security/selinux/include -I$(objtree)/include
|
/linux/kernel/gcov/ |
H A D | fs.c | 65 static const char objtree[] = OBJTREE; variable 438 * subdirectory of srctree, objtree or in an external location. 445 if (strncmp(filename, objtree, strlen(objtree)) == 0) { in get_link_target() 446 rel = filename + strlen(objtree) + 1; in get_link_target() 450 result = link_target(objtree, rel, ext->ext); in get_link_target()
|