Home
last modified time | relevance | path

Searched refs:srec (Results 1 – 25 of 27) sorted by relevance

12

/OK3568_Linux_fs/kernel/arch/sh/boot/
H A DMakefile29 targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \
101 OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
102 $(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
105 OBJCOPYFLAGS_uImage.srec := -I binary -O srec
106 $(obj)/uImage.srec: $(obj)/uImage
/OK3568_Linux_fs/u-boot/examples/standalone/
H A DMakefile22 extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
23 clean-files := *.srec *.bin
66 $(obj)/%.srec: OBJCOPYFLAGS := -O srec
67 $(obj)/%.srec: $(obj)/% FORCE
H A D.hello_world.srec.cmd
H A D.gitignore11 *.srec
H A DREADME.smc91111_eeprom36 -rwxr-xr-x 1 9524 2004-10-11 14:00 smc91111_eeprom.srec <- SREC
42 SREC += smc91111_eeprom.srec
/OK3568_Linux_fs/kernel/arch/h8300/boot/
H A DMakefile4 targets := vmlinux.srec vmlinux.bin zImage
7 OBJCOPYFLAGS_vmlinux.srec := -Osrec
15 $(obj)/vmlinux.srec $(obj)/vmlinux.bin: vmlinux FORCE
27 CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec arch/$(ARCH)/uImage.bin
/OK3568_Linux_fs/kernel/sound/core/
H A Dvmaster.c257 struct link_follower *srec; in _snd_ctl_add_follower() local
259 srec = kzalloc(struct_size(srec, follower.vd, follower->count), in _snd_ctl_add_follower()
261 if (!srec) in _snd_ctl_add_follower()
263 srec->kctl = follower; in _snd_ctl_add_follower()
264 srec->follower = *follower; in _snd_ctl_add_follower()
265 memcpy(srec->follower.vd, follower->vd, follower->count * sizeof(*follower->vd)); in _snd_ctl_add_follower()
266 srec->master = master_link; in _snd_ctl_add_follower()
267 srec->flags = flags; in _snd_ctl_add_follower()
275 follower->private_data = srec; in _snd_ctl_add_follower()
278 list_add_tail(&srec->list, &master_link->followers); in _snd_ctl_add_follower()
/OK3568_Linux_fs/kernel/fs/pstore/
H A Dftrace.c143 struct pstore_ftrace_record *drec, *srec, *mrec; in pstore_ftrace_combine_log() local
158 srec = (struct pstore_ftrace_record *)(src_log + src_off); in pstore_ftrace_combine_log()
163 pstore_ftrace_read_timestamp(&srec[src_idx])) { in pstore_ftrace_combine_log()
167 mrec[merged_idx++] = srec[src_idx++]; in pstore_ftrace_combine_log()
178 mrec[merged_idx++] = srec[src_idx++]; in pstore_ftrace_combine_log()
/OK3568_Linux_fs/u-boot/
H A D.u-boot.srec.cmd
H A DREADME3721 - "u-boot.srec" is in Motorola S-Record format
3761 5. Type "make", and you should get a working "u-boot.srec" file
4473 objcopy -I binary -O srec examples/image examples/image.srec
4491 ~>examples/image.srec
4719 ~>examples/hello_world.srec
4755 ~>examples/timer.srec
H A DMakefile792 ALL-y += u-boot.srec u-boot.bin u-boot.sym System.map binary_size_check
/OK3568_Linux_fs/kernel/arch/mips/boot/compressed/
H A DMakefile144 OBJCOPYFLAGS_vmlinuz.srec := $(OBJCOPYFLAGS) -S -O srec
145 vmlinuz.srec: vmlinuz
155 clean-files += $(objtree)/vmlinuz.srec
/OK3568_Linux_fs/buildroot/boot/lpc32xxcdl/
H A Dlpc32xxcdl-2.11-compiler_name.patch45 -ELFTOREC =arm-none-eabi-objcopy -O srec --strip-all --verbose
47 +ELFTOREC = $(OBJCOPY) -O srec --strip-all --verbose
49 REC =.srec
/OK3568_Linux_fs/kernel/arch/mips/boot/
H A DMakefile44 targets += vmlinux.srec
46 cmd_srec = $(OBJCOPY) -S -O srec $(strip-flags) $(VMLINUX) $@
47 $(obj)/vmlinux.srec: $(VMLINUX) FORCE
48 $(call if_changed,srec)
/OK3568_Linux_fs/u-boot/common/
H A Diotrace.c59 struct iotrace_record srec, *rec = &srec; in add_record() local
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxselinux_hooks.c169 XaceScreenAccessRec srec; in SELinuxLabelInitial() local
191 srec.client = serverClient; in SELinuxLabelInitial()
192 srec.access_mode = DixCreateAccess; in SELinuxLabelInitial()
193 srec.status = Success; in SELinuxLabelInitial()
197 srec.screen = screenInfo.screens[i]; in SELinuxLabelInitial()
198 SELinuxScreen(NULL, NULL, &srec); in SELinuxLabelInitial()
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_ialloc.c449 struct xfs_inobt_rec_incore *srec) /* src record */ in __xfs_inobt_can_merge() argument
455 if (trec->ir_startino != srec->ir_startino) in __xfs_inobt_can_merge()
460 !xfs_inobt_issparse(srec->ir_holemask)) in __xfs_inobt_can_merge()
464 if (!trec->ir_count || !srec->ir_count) in __xfs_inobt_can_merge()
468 if (trec->ir_count + srec->ir_count > XFS_INODES_PER_CHUNK) in __xfs_inobt_can_merge()
473 salloc = xfs_inobt_irec_to_allocmask(srec); in __xfs_inobt_can_merge()
487 struct xfs_inobt_rec_incore *srec) /* src */ in __xfs_inobt_rec_merge() argument
489 ASSERT(trec->ir_startino == srec->ir_startino); in __xfs_inobt_rec_merge()
492 trec->ir_count += srec->ir_count; in __xfs_inobt_rec_merge()
493 trec->ir_freecount += srec->ir_freecount; in __xfs_inobt_rec_merge()
[all …]
/OK3568_Linux_fs/kernel/arch/sh/
H A DMakefile193 uImage.srec uImage.bin zImage vmlinux.bin vmlinux.srec \
/OK3568_Linux_fs/kernel/arch/mips/
H A DMakefile346 boot-y += vmlinux.srec
365 bootz-y += vmlinuz.srec
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dbinutils.info1016 [--srec-len=IVAL] [--srec-forceS3]
1074 of 'srec' (e.g., use '-O srec').
1091 endianness or which have no endianness (e.g., 'srec'). (However, see
1290 typically used with an 'srec' output target. Note that 'objcopy'
1562 '--srec-len=IVAL'
1563 Meaningful only for srec output. Set the maximum length of the
1567 '--srec-forceS3'
1568 Meaningful only for srec output. Avoid generation of S1/S2
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dbinutils.info1016 [--srec-len=IVAL] [--srec-forceS3]
1074 of 'srec' (e.g., use '-O srec').
1091 endianness or which have no endianness (e.g., 'srec'). (However, see
1290 typically used with an 'srec' output target. Note that 'objcopy'
1562 '--srec-len=IVAL'
1563 Meaningful only for srec output. Set the maximum length of the
1567 '--srec-forceS3'
1568 Meaningful only for srec output. Avoid generation of S1/S2
/OK3568_Linux_fs/output/sessions/2025-06-05_23-17-21/
H A Dbuild_2025-06-06_01-57-41.log
H A D70-loader-build.log
H A D70-loader-build_2025-06-06_01-57-41.log
H A Dbuild.log

12