/scripts/kconfig/ |
D | Makefile | 41 $(1): $(obj)/$($(1)-prog) 45 build_$(1): $(obj)/$($(1)-prog) 51 localyesconfig localmodconfig: $(obj)/conf 76 $(simple-targets): $(obj)/conf 81 savedefconfig: $(obj)/conf 84 defconfig: $(obj)/conf 93 %_defconfig: $(obj)/conf 100 %.config: $(obj)/conf 112 testconfig: $(obj)/conf 114 -o cache_dir=$(abspath $(obj)/tests/.cache) \ [all …]
|
D | streamline_config.pl | 329 foreach my $obj (split /\s+/,$objs) { 330 $obj =~ s/-/_/g; 331 if ($obj =~ /(.*)\.o$/) {
|
/scripts/mod/ |
D | Makefile | 12 $(obj)/$(devicetable-offsets-file): $(obj)/devicetable-offsets.s FORCE 19 $(obj)/modpost.o $(obj)/file2alias.o $(obj)/sumversion.o $(obj)/symsearch.o: $(obj)/elfconfig.h 20 $(obj)/file2alias.o: $(obj)/$(devicetable-offsets-file) 23 cmd_elfconfig = $(obj)/mk_elfconfig < $< > $@ 25 $(obj)/elfconfig.h: $(obj)/empty.o $(obj)/mk_elfconfig FORCE
|
D | modpost.c | 1628 char *buf, *p, *obj; in mod_set_crcs() local 1645 while ((obj = strsep(&p, "\n")) && obj[0]) in mod_set_crcs() 1646 extract_crcs_for_object(obj, mod); in mod_set_crcs()
|
/scripts/ |
D | check_extable.sh | 5 obj=$1 7 file ${obj} | grep -q ELF || (echo "${obj} is not an ELF file." 1>&2 ; exit 0) 10 objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null 15 suspicious_relocs=$(objdump -rj __ex_table ${obj} | tail -n +6 | 33 …eval $(objdump -t ${obj} | grep ${1} | sed 's/\([0-9a-f]\+\) .\{7\} \([^ \t]\+\).*/section="\2"; s… 55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | … 65 addr2line -fip -j ${alt_target_section} -e ${obj} ${alt_target_offset} | awk '{print "\t" $0}' 72 objdump -hwj ${section} ${obj} | grep -q CODE 84 addr2line -fip -j ${section} -e ${obj} ${section_offset} | awk '{print "\t" $0}' 134 objdump -hj .debug_info ${obj} 2> /dev/null > /dev/null || [all …]
|
D | Makefile.build | 6 src := $(obj) 8 PHONY := $(obj)/ 9 $(obj)/: 14 obj-y := 15 obj-m := 58 ifndef obj 63 ifneq ($(obj-m),) 64 $(warning $(patsubst %.o,'%.ko',$(obj-m)) will not be built even though obj-m is specified.) 65 $(warning You cannot use subdir-y/m to visit a module Makefile. Use obj-y/m instead.) 72 subdir-builtin := $(sort $(filter %/built-in.a, $(real-obj-y))) [all …]
|
D | Makefile.lib | 18 obj-m := $(filter-out $(obj-y),$(obj-m)) 22 lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m))) 26 $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m)))) 37 obj-m := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m)) 39 obj-m := $(filter-out %/, $(obj-m)) 43 obj-y := $(patsubst %/, %/built-in.a, $(obj-y)) 45 obj-y := $(filter-out %/, $(obj-y)) 56 multi-obj-y := $(call multi-search, $(obj-y), .o, -objs -y) 57 multi-obj-m := $(call multi-search, $(obj-m), .o, -objs -y -m) 58 multi-obj-ym := $(multi-obj-y) $(multi-obj-m) [all …]
|
D | Makefile.host | 8 $(obj)/%.lex.c: $(src)/%.l FORCE 16 $(obj)/%.tab.c $(obj)/%.tab.h: $(src)/%.y FORCE 73 host-csingle := $(addprefix $(obj)/,$(host-csingle)) 74 host-cmulti := $(addprefix $(obj)/,$(host-cmulti)) 75 host-cobjs := $(addprefix $(obj)/,$(host-cobjs)) 76 host-cxxmulti := $(addprefix $(obj)/,$(host-cxxmulti)) 77 host-cxxobjs := $(addprefix $(obj)/,$(host-cxxobjs)) 78 host-rust := $(addprefix $(obj)/,$(host-rust)) 100 hostc_flags += -I $(objtree)/$(obj) 101 hostcxx_flags += -I $(objtree)/$(obj) [all …]
|
D | Makefile.clean | 6 src := $(obj) 18 $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-)))) 22 subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn)) 36 __clean-files := $(wildcard $(addprefix $(obj)/, $(__clean-files))) 42 quiet_cmd_clean = CLEAN $(obj) 43 cmd_clean = printf '$(obj)/%s ' $(patsubst $(obj)/%,%,$(__clean-files)) | xargs rm -rf
|
D | Makefile.dtbinst | 11 src := $(obj) 21 subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m)) 29 $(dst)/%.dtb: $(obj)/%.dtb 32 $(dst)/%.dtbo: $(obj)/%.dtbo 37 …$(Q)$(MAKE) $(dtbinst)=$@ dst=$(if $(CONFIG_ARCH_WANT_FLAT_DTB_INSTALL),$(dst),$(patsubst $(obj)/%…
|
D | Makefile.asm-generic | 12 src := $(subst /generated,,$(obj)) 32 generic-y := $(addprefix $(obj)/, $(generic-y)) 33 generated-y := $(addprefix $(obj)/, $(generated-y)) 36 old-headers := $(wildcard $(obj)/*.h) 49 $(obj)/%.h: 55 $(shell mkdir -p $(obj))
|
D | Makefile.userprogs | 15 user-csingle := $(addprefix $(obj)/, $(user-csingle)) 16 user-cmulti := $(addprefix $(obj)/, $(user-cmulti)) 17 user-cobjs := $(addprefix $(obj)/, $(user-cobjs)) 27 $(user-csingle): $(obj)/%: $(src)/%.c FORCE 33 $(addprefix $(obj)/, $($(target-stem)-objs)) \ 42 $(user-cobjs): $(obj)/%.o: $(src)/%.c FORCE
|
D | Makefile.headersinst | 17 src := $(srctree)/$(obj) 18 gen := $(objtree)/$(subst include/,include/generated/,$(obj))
|
D | Kbuild.include | 111 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= 114 build := -f $(srctree)/scripts/Makefile.build obj 117 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.dtbinst obj= 120 dtbinst := -f $(srctree)/scripts/Makefile.dtbinst obj 123 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj= 126 clean := -f $(srctree)/scripts/Makefile.clean obj
|
D | Makefile.modpost | 180 obj := $(KBUILD_EXTMOD) 181 src := $(obj)
|
D | Makefile | 18 $(obj)/target.json: scripts/generate_rust_target include/config/auto.conf FORCE
|
D | link-vmlinux.sh | 225 ${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init init/version-timestamp.o
|
/scripts/gcc-plugins/ |
D | Makefile | 3 $(obj)/randomize_layout_plugin.so: $(obj)/randomize_layout_seed.h 12 $(obj)/randomize_layout_seed.h: $(objtree)/scripts/basic/randstruct.seed FORCE 32 -I $(GCC_PLUGINS_DIR)/include -I $(obj) \ 46 plugin-single := $(addprefix $(obj)/, $(plugin-single)) 47 plugin-multi := $(addprefix $(obj)/, $(plugin-multi)) 48 plugin-objs := $(addprefix $(obj)/, $(plugin-objs)) 53 $(plugin-single): $(obj)/%.so: $(src)/%.c FORCE 58 $(addprefix $(obj)/, $($(target-stem)-objs)) 62 $(foreach m, $(notdir $(plugin-multi)), $(eval $(obj)/$m: $(addprefix $(obj)/, $($(m:%.so=%-objs)))… 67 $(plugin-objs): $(obj)/%.o: $(src)/%.c FORCE
|
/scripts/genksyms/ |
D | Makefile | 20 $(obj)/pars%.tab.c $(obj)/pars%.tab.h: $(src)/pars%.y FORCE 30 $(obj)/lex.lex.o: $(obj)/parse.tab.h
|
/scripts/gdb/linux/ |
D | Makefile | 8 cmd_symlink = ln -fsn $(patsubst $(obj)/%,$(abspath $(srctree))/$(src)/%,$@) $@ 11 $(addprefix $(obj)/, $(symlinks)): FORCE 22 $(obj)/constants.py: $(src)/constants.py.in FORCE
|
D | slab.py | 60 def get_orig_size(cache, obj): argument 62 p = mm.page_ops().ops.kasan_reset_tag(obj) 85 def __obj_to_index(cache, addr, obj): argument 86 …return reciprocal_divide(int(mm.page_ops().ops.kasan_reset_tag(obj)) - addr, cache['reciprocal_siz… 105 def get_freepointer(cache, obj): argument 106 obj = mm.page_ops().ops.kasan_reset_tag(obj) 107 ptr_addr = obj + cache['offset']
|
D | symbols.py | 153 for obj in gdb.objfiles(): 154 if (obj.filename.endswith('vmlinux') or 155 obj.filename.endswith('vmlinux.debug')): 156 orig_vmlinux = obj.filename
|
/scripts/clang-tools/ |
D | gen_compile_commands.py | 123 for obj in subprocess.check_output([ar, '-t', archive]).decode().split(): 124 yield to_cmdfile(obj) 141 obj = line.rstrip() 142 base, ext = os.path.splitext(obj) 144 sys.exit('{}: module path must end with .o'.format(obj))
|
/scripts/dtc/ |
D | Makefile | 27 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
|
/scripts/basic/ |
D | Makefile | 14 $(obj)/randstruct.seed: $(gen-randstruct-seed) FORCE
|