Home
last modified time | relevance | path

Searched refs:targets (Results 1 – 25 of 701) sorted by relevance

12345678910>>...29

/OK3568_Linux_fs/kernel/arch/mips/boot/
H A DMakefile32 targets := vmlinux.ecoff macro
38 targets += vmlinux.bin
44 targets += vmlinux.srec
78 targets += uImage
79 targets += uImage.bin
80 targets += uImage.bz2
81 targets += uImage.gz
82 targets += uImage.lzma
83 targets += uImage.lzo
115 targets += vmlinux.its.S
[all …]
/OK3568_Linux_fs/kernel/drivers/nfc/microread/
H A Dmicroread.c473 struct nfc_target *targets; in microread_target_discovered() local
478 targets = kzalloc(sizeof(struct nfc_target), GFP_KERNEL); in microread_target_discovered()
479 if (targets == NULL) { in microread_target_discovered()
484 targets->hci_reader_gate = gate; in microread_target_discovered()
488 targets->supported_protocols = in microread_target_discovered()
490 targets->sens_res = in microread_target_discovered()
492 targets->sel_res = skb->data[MICROREAD_EMCF_A_SAK]; in microread_target_discovered()
493 targets->nfcid1_len = skb->data[MICROREAD_EMCF_A_LEN]; in microread_target_discovered()
494 if (targets->nfcid1_len > sizeof(targets->nfcid1)) { in microread_target_discovered()
498 memcpy(targets->nfcid1, &skb->data[MICROREAD_EMCF_A_UID], in microread_target_discovered()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dsstatetests.py58 …def run_test_sstate_creation(self, targets, distro_specific=True, distro_nonspecific=True, temp_ss… argument
62 bitbake(['-cclean'] + targets)
64 bitbake(['-ccleansstate'] + targets)
66 bitbake(targets)
68 … results = self.search_sstate('|'.join(map(str, targets)), distro_specific, distro_nonspecific)
78 …assertTrue(file_tracker , msg="Could not find sstate files for: %s" % ', '.join(map(str, targets)))
80 …state files in the wrong place for: %s (found %s)" % (', '.join(map(str, targets)), str(file_track…
95 …def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_s… argument
98 bitbake(['-ccleansstate'] + targets)
100 bitbake(targets)
[all …]
H A Dgcc.py17 targets = get_bb_var("RUNTIMETARGET", "gcc-runtime").split()
18 if suite not in targets:
22 targets = set()
25 targets.add("check-gcc-c")
27 targets.add("check-gcc-c++")
29 targets.add("check-target-{}".format(s))
33 features.append('MAKE_CHECK_TARGETS = "{0}"'.format(" ".join(targets)))
/OK3568_Linux_fs/kernel/scripts/
H A DMakefile.build21 targets :=
79 targets-for-builtin := $(extra-y)
82 targets-for-builtin += $(obj)/lib.a
86 targets-for-builtin += $(obj)/built-in.a
89 targets-for-modules := $(patsubst %.o, %.mod, $(filter %.o, $(obj-m)))
92 targets-for-modules += $(obj)/modules.order
95 targets += $(targets-for-builtin) $(targets-for-modules)
356 targets += $(filter-out $(subdir-builtin), $(real-obj-y))
357 targets += $(filter-out $(subdir-modorder), $(real-obj-m))
358 targets += $(lib-y) $(always-y) $(MAKECMDGOALS)
[all …]
H A DMakefile.modpost85 targets += Module.symvers
170 targets += $(output-symdump)
180 existing-targets := $(wildcard $(sort $(targets)))
182 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-5.10/scripts/
H A DMakefile.build21 targets :=
79 targets-for-builtin := $(extra-y)
82 targets-for-builtin += $(obj)/lib.a
86 targets-for-builtin += $(obj)/built-in.a
89 targets-for-modules := $(patsubst %.o, %.mod, $(filter %.o, $(obj-m)))
92 targets-for-modules += $(obj)/modules.order
95 targets += $(targets-for-builtin) $(targets-for-modules)
356 targets += $(filter-out $(subdir-builtin), $(real-obj-y))
357 targets += $(filter-out $(subdir-modorder), $(real-obj-m))
358 targets += $(lib-y) $(always-y) $(MAKECMDGOALS)
[all …]
H A DMakefile.modpost85 targets += Module.symvers
170 targets += $(output-symdump)
180 existing-targets := $(wildcard $(sort $(targets)))
182 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/
H A DMakefile.build21 targets :=
79 targets-for-builtin := $(extra-y)
82 targets-for-builtin += $(obj)/lib.a
86 targets-for-builtin += $(obj)/built-in.a
89 targets-for-modules := $(patsubst %.o, %.mod, $(filter %.o, $(obj-m)))
92 targets-for-modules += $(obj)/modules.order
95 targets += $(targets-for-builtin) $(targets-for-modules)
356 targets += $(filter-out $(subdir-builtin), $(real-obj-y))
357 targets += $(filter-out $(subdir-modorder), $(real-obj-m))
358 targets += $(lib-y) $(always-y) $(MAKECMDGOALS)
[all …]
H A DMakefile.modpost85 targets += Module.symvers
170 targets += $(output-symdump)
180 existing-targets := $(wildcard $(sort $(targets)))
182 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
/OK3568_Linux_fs/kernel/arch/mips/vdso/
H A DMakefile104 targets += $(obj-vdso-y)
105 targets += vdso.lds
106 targets += vdso.so.dbg.raw vdso.so.raw
107 targets += vdso.so.dbg vdso.so
108 targets += vdso-image.c
131 targets += $(obj-vdso-y:%.o=%-o32.o)
132 targets += vdso-o32.lds
133 targets += vdso-o32.so.dbg.raw vdso-o32.so.raw
134 targets += vdso-o32.so.dbg vdso-o32.so
135 targets += vdso-o32-image.c
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dsstate-diff-machines.sh30 targets=
52 --targets=<targets>
53 …List of targets separated by space, will use the environment variable TARGETS if it is not specifi…
81 --targets=*)
82 targets=`echo $1 | sed -e 's#^--targets="*\([^"]*\)"*#\1#'`
107 [ -n "$targets" ] || targets=$TARGETS
108 [ -n "$targets" ] || targets=$default_targets
117 bitbake -S none ${targets} 2>&1 | tee -a ${OUTPUT}/${M}/log;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-extended/tgt/files/
H A Dtgtd.service11 # Put tgtd into "offline" state until all the targets are configured.
15 # Configure the targets.
20 # Update configuration for targets. Only targets which
27 # Remove all targets. It only removes targets which are not in use.
29 # tgtd will exit if all targets were removed
/OK3568_Linux_fs/kernel/arch/x86/realmode/rm/
H A DMakefile36 targets += $(realmode-y)
45 targets += pasyms.h
49 targets += realmode.lds
55 targets += realmode.elf
61 targets += realmode.bin
68 targets += realmode.relocs
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dnfc.rst16 - Polling for targets;
27 PF_NFC. The NFC_SOCKPROTO_RAW performs raw communication with NFC targets.
62 * start_poll - setup the device to poll for targets
64 * activate_target - select and initialize one of the targets found
80 * NFC_CMD_START_POLL - setup a specific device to polling for targets
82 * NFC_CMD_GET_TARGET - dump the list of targets found by a specific device
86 * NFC_EVENT_TARGETS_FOUND - reports START_POLL results when 1 or more targets
89 The user must call START_POLL to poll for NFC targets, passing the desired NFC
95 If the polling operation finds one or more targets, the event TARGETS_FOUND is
97 all targets found by such device. Each reply message has target attributes with
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dselection-api-targets.rst4 Selection targets
8 .. _sel-targets-capture:
14 Cropping and composing targets
20 See :ref:`v4l2-selection-targets` for more information.
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dlibtoaster.js90 function _startABuild (url, targets, onsuccess, onfail) { argument
96 if (targets instanceof Array){
97 targets = targets.reduce(function(prevV, nextV){
105 data: { 'targets' : targets }, property
474 function _updateProject (url, targets, default_image, onsuccess, onfail) { argument
480 if (targets instanceof Array){
481 targets = targets.reduce(function(prevV, nextV){
489 data: { 'do_update' : 'True' , 'targets' : targets , 'default_image' : default_image , }, property
540 function _setDefaultImage (url, targets, onsuccess, onfail) { argument
546 if (targets instanceof Array){
[all …]
/OK3568_Linux_fs/buildroot/package/uboot-tools/
H A D0002-tools-only-in-no-dot-config-targets.patch4 Subject: [PATCH] tools only in no dot config targets
11 Makefile: drop "tools-only" from no-dot-config-targets
35 no-dot-config-targets := clean clobber mrproper distclean \
40 config-targets := 0
41 mixed-targets := 0
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.4/scripts/
H A DMakefile.modpost116 targets += $(modules:.ko=.mod.o)
127 targets += $(modules)
142 targets := $(wildcard $(sort $(targets)))
143 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.4/scripts/
H A DMakefile.modpost116 targets += $(modules:.ko=.mod.o)
127 targets += $(modules)
142 targets := $(wildcard $(sort $(targets)))
143 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
/OK3568_Linux_fs/kernel/arch/arc/boot/
H A DMakefile2 targets := vmlinux.bin vmlinux.bin.gz macro
16 targets += uImage.bin
17 targets += uImage.gz
18 targets += uImage.lzma
/OK3568_Linux_fs/kernel/lib/raid6/
H A DMakefile53 targets += int1.c int2.c int4.c int8.c int16.c int32.c
61 targets += altivec1.c altivec2.c altivec4.c altivec8.c
69 targets += vpermxor1.c vpermxor2.c vpermxor4.c vpermxor8.c
77 targets += neon1.c neon2.c neon4.c neon8.c
81 targets += s390vx8.c
88 targets += tables.c
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mscc/
H A Docelot_io.c20 regmap_read(ocelot->targets[target], in __ocelot_read_ix()
32 regmap_write(ocelot->targets[target], in __ocelot_write_ix()
44 regmap_update_bits(ocelot->targets[target], in __ocelot_rmw_ix()
87 regmap_read(ocelot->targets[target], in __ocelot_target_read_ix()
95 regmap_write(ocelot->targets[target], in __ocelot_target_write_ix()
122 ocelot->targets[target], in ocelot_regfields_init()
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.19/scripts/
H A DMakefile.build19 targets :=
435 targets += $(filter-out $(subdir-obj-y), $(real-obj-y)) $(real-obj-m) $(lib-y)
436 targets += $(extra-y) $(MAKECMDGOALS) $(always)
498 targets += $(builtin-target)
530 targets += $(lib-target)
567 targets += $(obj)/lib-ksyms.o
614 targets += $(multi-used-m)
615 targets := $(filter-out $(PHONY), $(targets))
622 $(filter %$(strip $(1)), $(targets))))
627 targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \
[all …]
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.19/scripts/
H A DMakefile.build19 targets :=
435 targets += $(filter-out $(subdir-obj-y), $(real-obj-y)) $(real-obj-m) $(lib-y)
436 targets += $(extra-y) $(MAKECMDGOALS) $(always)
498 targets += $(builtin-target)
530 targets += $(lib-target)
567 targets += $(obj)/lib-ksyms.o
614 targets += $(multi-used-m)
615 targets := $(filter-out $(PHONY), $(targets))
622 $(filter %$(strip $(1)), $(targets))))
627 targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \
[all …]

12345678910>>...29