Home
last modified time | relevance | path

Searched refs:target (Results 1 – 14 of 14) sorted by relevance

/scripts/
Dmarkup_oops.pl37 my $target = "0";
159 $target = $1;
162 $target = $1;
183 my $decodestart = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$func_offset");
184 my $decodestop = Math::BigInt->from_hex("0x$target") + 8192;
185 if ($target eq "0") {
206 …$vmaoffset = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$fu") - Math::BigInt-…
219 my ($address, $target) = @_;
221 my $ta = "0x".$target;
242 if (InRange($1, $target)) {
[all …]
DMakefile.host83 $(HOSTCFLAGS_$(target-stem).o)
85 $(HOSTCXXFLAGS_$(target-stem).o)
105 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
113 $(addprefix $(obj)/, $($(target-stem)-objs)) \
114 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
131 $(addprefix $(obj)/, $($(target-stem)-$(o)))) \
132 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
164 $(addprefix $(obj)/, $($(target-stem)-objs)) \
165 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem).so)
174 $(addprefix $(obj)/, $($(target-stem)-objs)) \
[all …]
DKbuild.include15 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
16 dot-target = $(dir $@).$(notdir $@)
21 depfile = $(subst $(comma),_,$(dot-target).d)
24 # filename of target with directory and extension stripped
60 trap "rm -f $(dot-target).tmp" EXIT; \
61 { $(filechk_$(1)); } > $(dot-target).tmp; \
62 if [ ! -r $@ ] || ! cmp -s $@ $(dot-target).tmp; then \
64 mv -f $(dot-target).tmp $@; \
190 # Delete the target on interruption
192 # GNU Make automatically deletes the target if it has already been changed by
[all …]
DMakefile.build65 lib-target := $(obj)/lib.a
70 builtin-target := $(obj)/built-in.a
74 modorder-target := $(obj)/modules.order
257 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
412 ifdef builtin-target
420 $(builtin-target): $(real-obj-y) FORCE
423 targets += $(builtin-target)
431 $(modorder-target): $(subdir-ym) FORCE
439 ifdef lib-target
444 $(lib-target): $(lib-y) FORCE
[all …]
DMakefile.modbuiltin37 modbuiltin-target := $(obj)/modules.builtin
39 __modbuiltin: $(modbuiltin-target) $(subdir-ym)
42 $(modbuiltin-target): $(subdir-ym) FORCE
DMakefile.package59 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
68 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
102 snapcraft --target-arch=$(UTS_MACHINE)
133 $(error unknown target $@)))) \
DMakefile.lib91 target-stem = $(basename $(patsubst $(obj)/%,%,$@))
101 $(ccflags-y) $(CFLAGS_$(target-stem).o)
102 _c_flags = $(filter-out $(CFLAGS_REMOVE_$(target-stem).o), $(orig_c_flags))
104 $(asflags-y) $(AFLAGS_$(target-stem).o)
105 _a_flags = $(filter-out $(AFLAGS_REMOVE_$(target-stem).o), $(orig_a_flags))
106 _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(target-stem).lds)
302 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
/scripts/dtc/
Ddtc-parser.y175 struct node *target = get_node_by_ref($1, $3); variable
177 if (target) {
178 add_label(&target->labels, $2);
179 merge_nodes(target, $4);
194 struct node *target = get_node_by_ref($1, $2); variable
196 if (target)
197 merge_nodes(target, $3);
205 struct node *target = get_node_by_ref($1, $2); variable
207 if (target) {
208 merge_nodes(target, $3);
[all …]
/scripts/basic/
Dfixdep.c311 static void parse_dep_file(char *m, const char *target) in parse_dep_file() argument
359 target, m); in parse_dep_file()
360 xprintf("deps_%s := \\\n", target); in parse_dep_file()
387 xprintf("\n%s: $(deps_%s)\n\n", target, target); in parse_dep_file()
388 xprintf("$(deps_%s):\n", target); in parse_dep_file()
393 const char *depfile, *target, *cmdline; in main() local
400 target = argv[2]; in main()
403 xprintf("cmd_%s := %s\n\n", target, cmdline); in main()
406 parse_dep_file(buf, target); in main()
/scripts/dtc/libfdt/
Dfdt_overlay.c556 static int overlay_apply_node(void *fdt, int target, in overlay_apply_node() argument
575 ret = fdt_setprop(fdt, target, name, prop, prop_len); in overlay_apply_node()
585 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node()
587 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node()
624 int target; in overlay_merge() local
638 target = overlay_get_target(fdt, fdto, fragment, NULL); in overlay_merge()
639 if (target < 0) in overlay_merge()
640 return target; in overlay_merge()
642 ret = overlay_apply_node(fdt, target, fdto, overlay); in overlay_merge()
696 int root_sym, ov_sym, prop, path_len, fragment, target; in overlay_symbol_update() local
[all …]
/scripts/kconfig/
Dexpr.h281 struct menu *target; member
DMakefile95 $(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
Dmenu.c727 jump->target = prop->menu; in get_prompt_str()
729 jump->target = location; in get_prompt_str()
Dmconf.c378 data->targets[k] = pos->target; in update_text()