Home
last modified time | relevance | path

Searched refs:branch (Results 1 – 25 of 37) sorted by relevance

12

/u-boot/tools/patman/
A Dgitutil.py52 def CountCommitsToBranch(branch): argument
64 if branch:
65 us, msg = GetUpstream('.git', branch)
66 rev_range = '%s..%s' % (us, branch)
94 def GuessUpstream(git_dir, branch): argument
114 return None, "Branch '%s' not found" % branch
124 def GetUpstream(git_dir, branch): argument
142 upstream, msg = GuessUpstream(git_dir, branch)
155 def GetRangeInBranch(git_dir, branch, include_upstream=False): argument
165 upstream, msg = GetUpstream(git_dir, branch)
[all …]
A Dcontrol.py23 def prepare_patches(col, branch, count, start, end, ignore_binary, signoff): argument
48 count = (gitutil.CountCommitsToBranch(branch) - start)
57 series = patchstream.get_metadata(branch, start, to_do)
59 branch, start, to_do, ignore_binary, series, signoff)
165 col, args.branch, args.count, args.start, args.end,
179 def patchwork_status(branch, count, start, end, dest_branch, force, argument
207 count = (gitutil.CountCommitsToBranch(branch) - start)
209 series = patchstream.get_metadata(branch, start, count - end)
236 status.check_patchwork_status(series, found[0], branch, dest_branch, force,
A Dstatus.py347 def create_branch(series, new_rtag_list, branch, dest_branch, overwrite, argument
370 if branch == dest_branch:
382 if not branch:
383 branch = 'HEAD'
384 target = repo.revparse_single('%s~%d' % (branch, count))
390 cherry = repo.revparse_single('%s~%d' % (branch, count - seq - 1))
412 def check_patchwork_status(series, series_id, branch, dest_branch, force, argument
483 num_added = create_branch(series, new_rtag_list, branch,
A DREADME8 - Creates patch directly from your branch
16 - pulls these down into a new branch on request
25 once, and keep the settings with each branch rather than having to
44 - Add tags into the commits within each branch to indicate where the
48 - Each branch tracks the upstream branch, so that this script can
50 - Check out a branch, and run this script to create and send out your
193 patman does not yet use it, but it is convenient to put the branch
208 branch against patchwork to see what new reviews your series has
402 This will create a new 'mtrr4' branch which is the same as your current branch
439 (if you are tracking an upstream branch):
[all …]
A Dfunc_test.py477 col, branch=None, count=-1, start=0, end=0,
486 col, branch='second', count=-1, start=0, end=0,
494 col, branch='second', count=-1, start=0, end=1,
977 branch = 'first'
984 series = patchstream.get_metadata_for_list(branch, gitdir, count)
1025 status.check_patchwork_status(series, '1234', branch, dest_branch,
A Dpatchstream.py717 def get_metadata(branch, start, count): argument
732 '%s~%d' % (branch if branch else 'HEAD', start), None, count)
A Dmain.py185 control.patchwork_status(args.branch, args.count, args.start, args.end,
/u-boot/tools/buildman/
A Dcontrol.py229 has_range = options.branch and '..' in options.branch
231 if not options.branch:
244 options.branch))
251 "set branch's upstream or use -c flag" % options.branch)
270 if options.branch:
273 range_expr = options.branch
276 options.branch)
278 options.branch)
286 series = patchstream.get_metadata_for_list(options.branch,
313 if options.branch:
[all …]
A DREADME107 branch, set the branch's upstream to a valid value, and all will be well.
177 $ git checkout -b my-branch origin/master
496 branch with a valid upstream)
498 $ ./tools/buildman/buildman -b <branch> -n
500 If it can't detect the upstream branch, try checking out the branch, and
550 $ ./tools/buildman/buildman -b <branch>
606 $ ./tools/buildman/buildman -b <branch> -se
1207 ** buildman -b <branch> powerpc
1210 ** buildman -b <branch> esd
1213 ** buildman -b <branch> keymile siemens
[all …]
/u-boot/fs/ubifs/
A Dlpt.c1201 lnum = branch->lnum; in ubifs_read_nnode()
1202 offs = branch->offs; in ubifs_read_nnode()
1268 lnum = branch->lnum; in read_pnode()
1269 offs = branch->offs; in read_pnode()
1303 branch->pnode = pnode; in read_pnode()
1409 return branch->nnode; in ubifs_get_nnode()
1436 return branch->pnode; in ubifs_get_pnode()
1515 if (branch->cnode) in dirty_cow_nnode()
1830 err = ubifs_leb_read(c, branch->lnum, buf, branch->offs, in scan_get_nnode()
1898 ubifs_assert(branch->offs >= 0 && branch->offs < c->leb_size); in scan_get_pnode()
[all …]
A Dlpt_commit.c915 struct ubifs_nbranch *branch; in make_nnode_dirty() local
917 branch = &nnode->parent->nbranch[nnode->iip]; in make_nnode_dirty()
918 if (branch->lnum != lnum || branch->offs != offs) in make_nnode_dirty()
959 struct ubifs_nbranch *branch; in make_pnode_dirty() local
964 branch = &pnode->parent->nbranch[pnode->iip]; in make_pnode_dirty()
965 if (branch->lnum != lnum || branch->offs != offs) in make_pnode_dirty()
1529 struct ubifs_nbranch *branch; in dbg_is_nnode_dirty() local
1534 if (branch->lnum != lnum || branch->offs != offs) in dbg_is_nnode_dirty()
1563 struct ubifs_nbranch *branch; in dbg_is_pnode_dirty() local
1569 branch = &pnode->parent->nbranch[pnode->iip]; in dbg_is_pnode_dirty()
[all …]
/u-boot/common/
A Dbedbug.c1074 int branch = 0; in find_next_address() local
1111 branch = 1; in find_next_address()
1127 branch = 1; in find_next_address()
1140 branch = 1; in find_next_address()
1153 branch = 1; in find_next_address()
1158 branch = 0; in find_next_address()
1218 if (branch && (!conditional || (ctr_ok && cond_ok))) { in find_next_address()
/u-boot/doc/
A DREADME.boston17 U-Boot can be run on a currently out-of-tree branch of QEMU with support for
19 branch of git://git.linux-mips.org/pub/scm/paul/qemu.git and used like so:
A DREADME.POST589 - lock a branch instruction in the instruction cache
590 - replace the branch instruction with "nop"
591 - jump to the branch instruction
592 - check that the branch instruction was executed
599 - jump to a branch instruction
600 - check that the branch instruction was executed
601 - replace the branch instruction with "nop"
603 - jump to the branch instruction
/u-boot/doc/board/freescale/
A Dimx8mm_evk.rst21 branch: imx_5.4.47_2.2.0
A Dimx8mn_evk.rst21 branch: imx_5.4.47_2.2.0
A Dimx8mq_evk.rst21 branch: imx_5.4.47_2.2.0
A Dimx8mp_evk.rst20 branch: imx_5.4.70_2.3.0
/u-boot/board/google/imx8mq_phanbell/
A DREADME14 branch: imx_4.19.35_1.0.0
/u-boot/arch/arm/mach-omap2/
A Dlowlevel_init.S78 @ In case of IRQ happening in Secure, then ARM will branch here.
/u-boot/board/technexion/pico-imx8mq/
A DREADME14 branch: master
/u-boot/arch/arm/mach-omap2/omap5/
A Dsec_entry_cpu1.S51 @ In case of IRQ happening in Secure, then ARM will branch here.
/u-boot/doc/arch/
A Darm64.rst39 enter slave_cpu branch execution in start.S. The location address
A Dnds32.rst53 - Dynamic branch prediction.
/u-boot/drivers/usb/host/
A Dohci-hcd.c622 int i, branch = 0; in ep_int_ballance() local
628 if (ohci->ohci_int_load [branch] > ohci->ohci_int_load [i]) in ep_int_ballance()
629 branch = i; in ep_int_ballance()
631 branch = branch % interval; in ep_int_ballance()
632 for (i = branch; i < 32; i += interval) in ep_int_ballance()
635 return branch; in ep_int_ballance()

Completed in 31 milliseconds

12