| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | control.py | 151 has_range = options.branch and '..' in options.branch 153 if not options.branch: 158 options.branch) 161 options.branch) 166 options.branch)) 173 "set branch's upstream or use -c flag" % options.branch) 206 if options.branch: 209 range_expr = options.branch 212 options.branch) 214 options.branch) [all …]
|
| H A D | README | 62 can be run repeatedly on the same branch. In this case it will automatically 64 commit). It is possible to build a branch for one board, then later build it 100 Buildman generally builds a branch (with the -b flag), and in this case 103 branch. Put all your commits in a branch, set the branch's upstream to a 160 $ git checkout -b my-branch origin/master 161 $ # Add some commits to the branch, reading for testing 478 First do a dry run using the -n flag: (replace <branch> with a real, local 479 branch with a valid upstream) 481 $ ./tools/buildman/buildman -b <branch> -n 483 If it can't detect the upstream branch, try checking out the branch, and [all …]
|
| H A D | test.py | 297 options.branch = 'test-buildman'
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | gitutil.py | 85 def GuessUpstream(git_dir, branch): argument 101 pipe = [LogCmd(branch, git_dir=git_dir, oneline=True, count=100)] 105 return None, "Branch '%s' not found" % branch 113 return None, "Cannot find a suitable upstream for branch '%s'" % branch 115 def GetUpstream(git_dir, branch): argument 129 'branch.%s.remote' % branch) 131 'branch.%s.merge' % branch) 133 upstream, msg = GuessUpstream(git_dir, branch) 143 "'%s' remote='%s', merge='%s'" % (branch, remote, merge)) 146 def GetRangeInBranch(git_dir, branch, include_upstream=False): argument [all …]
|
| H A D | README | 10 - Creates patch directly from your branch 22 once, and keep the settings with each branch rather than having to 41 - Add tags into the commits within each branch to indicate where the 45 - Each branch tracks the upstream branch, so that this script can 47 - Check out a branch, and run this script to create and send out your 136 If it can't detect the upstream branch, try telling it how many patches 188 patman does not yet use it, but it is convenient to put the branch 319 these rather contrived patches in the following order in branch us-cmd in 337 (if you are tracking an upstream branch): 446 1. When you change back to the us-cmd branch days or weeks later all your [all …]
|
| /rk3399_rockchip-uboot/fs/ubifs/ |
| H A D | lpt.c | 1193 struct ubifs_nbranch *branch = NULL; in ubifs_read_nnode() local 1199 branch = &parent->nbranch[iip]; in ubifs_read_nnode() 1200 lnum = branch->lnum; in ubifs_read_nnode() 1201 offs = branch->offs; in ubifs_read_nnode() 1234 branch->nnode = nnode; in ubifs_read_nnode() 1261 struct ubifs_nbranch *branch; in read_pnode() local 1266 branch = &parent->nbranch[iip]; in read_pnode() 1267 lnum = branch->lnum; in read_pnode() 1268 offs = branch->offs; in read_pnode() 1302 branch->pnode = pnode; in read_pnode() [all …]
|
| H A D | lpt_commit.c | 913 struct ubifs_nbranch *branch; in make_nnode_dirty() local 915 branch = &nnode->parent->nbranch[nnode->iip]; in make_nnode_dirty() 916 if (branch->lnum != lnum || branch->offs != offs) in make_nnode_dirty() 957 struct ubifs_nbranch *branch; in make_pnode_dirty() local 962 branch = &pnode->parent->nbranch[pnode->iip]; in make_pnode_dirty() 963 if (branch->lnum != lnum || branch->offs != offs) in make_pnode_dirty() 1527 struct ubifs_nbranch *branch; in dbg_is_nnode_dirty() local 1531 branch = &nnode->parent->nbranch[nnode->iip]; in dbg_is_nnode_dirty() 1532 if (branch->lnum != lnum || branch->offs != offs) in dbg_is_nnode_dirty() 1561 struct ubifs_nbranch *branch; in dbg_is_pnode_dirty() local [all …]
|
| /rk3399_rockchip-uboot/common/ |
| H A D | bedbug.c | 1073 int branch = 0; in find_next_address() local 1110 branch = 1; in find_next_address() 1126 branch = 1; in find_next_address() 1139 branch = 1; in find_next_address() 1152 branch = 1; in find_next_address() 1157 branch = 0; in find_next_address() 1217 if (branch && (!conditional || (ctr_ok && cond_ok))) { in find_next_address()
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.boston | 17 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:
|
| H A D | README.N1213 | 10 - Dynamic branch prediction.
|
| H A D | README.arm64 | 36 enter slave_cpu branch execution in start.S. The location address
|
| H A D | README.POST | 600 - lock a branch instruction in the instruction cache 601 - replace the branch instruction with "nop" 602 - jump to the branch instruction 603 - check that the branch instruction was executed 610 - jump to a branch instruction 611 - check that the branch instruction was executed 612 - replace the branch instruction with "nop" 614 - jump to the branch instruction
|
| H A D | README.rockchip | 279 [2] https://github.com/linux-rockchip/u-boot-rockchip.git branch u-boot-rk3288
|
| /rk3399_rockchip-uboot/arch/arm/mach-omap2/ |
| H A D | lowlevel_init.S | 79 @ In case of IRQ happening in Secure, then ARM will branch here.
|
| /rk3399_rockchip-uboot/arch/arm/mach-omap2/omap5/ |
| H A D | sec_entry_cpu1.S | 52 @ In case of IRQ happening in Secure, then ARM will branch here.
|
| /rk3399_rockchip-uboot/drivers/usb/host/ |
| H A D | ohci-hcd.c | 620 int i, branch = 0; in ep_int_ballance() local 626 if (ohci->ohci_int_load [branch] > ohci->ohci_int_load [i]) in ep_int_ballance() 627 branch = i; in ep_int_ballance() 629 branch = branch % interval; in ep_int_ballance() 630 for (i = branch; i < 32; i += interval) in ep_int_ballance() 633 return branch; in ep_int_ballance()
|
| /rk3399_rockchip-uboot/board/work-microwave/work_92105/ |
| H A D | README | 50 code to load SPL into SRAM and branch into it.
|
| /rk3399_rockchip-uboot/arch/arm/lib/ |
| H A D | div64.S | 144 @ If possible, branch for another shift in the division loop.
|
| /rk3399_rockchip-uboot/board/hisilicon/poplar/ |
| H A D | README | 94 Make sure you are using the correct branch on each one of these repositories. 96 would be the "latest" branch).
|
| /rk3399_rockchip-uboot/board/sunxi/ |
| H A D | README.sunxi64 | 32 Checkout the "allwinner" branch from the github repository [1] and build it:
|
| /rk3399_rockchip-uboot/board/freescale/t102xrdb/ |
| H A D | README | 8 and other packet processing intensive small enterprise and branch office appliances,
|
| /rk3399_rockchip-uboot/board/freescale/t102xqds/ |
| H A D | README | 8 and other packet processing intensive small enterprise and branch office appliances,
|
| /rk3399_rockchip-uboot/arch/arm/mach-sunxi/ |
| H A D | Kconfig | 221 chosen to be a NOP in one mode and a branch in the other, so the
|