/openbmc/u-boot/tools/buildman/ |
H A D | control.py | 25 def GetActionSummary(is_summary, commits, selected, options): argument 31 if commits: 32 count = len(commits) 65 commits = series.commits 67 commits = None 68 print GetActionSummary(False, commits, boards_selected, 71 if commits: 72 for upto in range(0, len(series.commits), options.step): 73 commit = series.commits[upto] 274 options.step = len(series.commits) - 1 [all …]
|
H A D | test.py | 80 commits = [ variable 113 self.commits = [] 115 for commit_info in commits: 122 self.commits.append(comm) 200 build.BuildBoards(self.commits, board_selected, keep_outputs=False, 210 self.assertEqual(count, len(commits) * len(boards) + 2) 212 build.ShowSummary(self.commits, board_selected) 217 self.assertEqual(lines[0].text, '01: %s' % commits[0][1]) 220 self.assertEqual(lines[1].text, '02: %s' % commits[1][1]) 236 self.assertEqual(lines[6].text, '03: %s' % commits[2][1]) [all …]
|
H A D | builder.py | 441 self.ProduceResultSummary(result.commit_upto, self.commits, 478 if self.commits: 479 commit = self.commits[commit_upto] 1415 def ProduceResultSummary(self, commit_upto, commits, board_selected): argument 1422 if commits: 1424 commits[commit_upto].subject) 1432 def ShowSummary(self, commits, board_selected): argument 1442 self.commit_count = len(commits) if commits else 1 1443 self.commits = commits 1448 self.ProduceResultSummary(commit_upto, commits, board_selected) [all …]
|
H A D | builderthread.py | 46 self.commits = [] 191 if self.builder.commits: 192 commit = self.builder.commits[commit_upto] 426 if job.commits: 431 for commit_upto in range(0, len(job.commits), job.step):
|
/openbmc/openbmc/poky/meta/lib/patchtest/tests/ |
H A D | test_mbox.py | 46 for commit in self.commits: 57 for commit in self.commits: 72 for commit in self.commits: 113 for commit in self.commits: 141 for commit in self.commits: 150 for commit in self.commits: 155 for commit in self.commits: 167 for commit in self.commits: 173 for commit in self.commits:
|
/openbmc/openbmc-build-scripts/config/ |
H A D | .gitlint | 16 # By default gitlint will ignore merge, revert, fixup and squash commits. 17 # ignore-merge-commits=true 18 # ignore-revert-commits=true 19 # ignore-fixup-commits=true 20 # ignore-squash-commits=true 33 # fail-without-commits=true 40 # contrib=contrib-title-conventional-commits,CC1 74 # Whether to ignore this rule on merge commits (which typically only have a title) 75 ignore-merge-commits=false 95 # Ignore certain rules for commits of which the title matches a regex [all …]
|
/openbmc/qemu/scripts/ |
H A D | get_maintainer.pl | 1260 my $commits; 1268 $commits = grep(/$pattern/, @lines); # of commits 1279 return ($commits, @$signers_ref); 1309 my @commits = (); 1315 push(@commits, $1); 1319 return @commits; 1325 my @commits = (); 1327 return @commits if (!(-f $file)); 1343 push(@commits, $all_commits[$i]); 1355 push(@commits, vcs_save_commits($cmd)); [all …]
|
/openbmc/linux/scripts/ |
H A D | get_maintainer.pl | 1586 my $commits; 1600 $commits = grep(/$pattern/, @lines); # of commits 1620 return ($commits, $signers_ref, $authors_ref, \@stats); 1654 my @commits = (); 1660 push(@commits, $1); 1664 return @commits; 1670 my @commits = (); 1672 return @commits if (!(-f $file)); 1688 push(@commits, $all_commits[$i]); 1700 push(@commits, vcs_save_commits($cmd)); [all …]
|
H A D | checkkconfigsymbols.py | 197 commits = find_commits(symbol, args.diff) 198 if commits: 199 for commit in commits: 238 commits = execute(["git", "log", "--pretty=oneline", 241 return [x for x in commits.split("\n") if x]
|
/openbmc/u-boot/scripts/ |
H A D | get_maintainer.pl | 1547 my $commits; 1561 $commits = grep(/$pattern/, @lines); # of commits 1581 return ($commits, $signers_ref, $authors_ref, \@stats); 1615 my @commits = (); 1621 push(@commits, $1); 1625 return @commits; 1631 my @commits = (); 1633 return @commits if (!(-f $file)); 1649 push(@commits, $all_commits[$i]); 1661 push(@commits, vcs_save_commits($cmd)); [all …]
|
H A D | mailmapper | 77 commits, name = line.split(None, 1) 81 commits_per_name[name] = int(commits)
|
/openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
H A D | gitpkgv.bbclass | 95 commits = bb.fetch2.runfetchcmd( 99 if commits != "": 102 f.write("%d\n" % int(commits)) 104 commits = "0" 107 commits = f.readline(128).strip() 116 ver = "0.0-%s-g%s" % (commits, vars['rev'][:7]) 118 ver = "%s+%s" % (commits, vars['rev'][:7])
|
/openbmc/qemu/.gitlab-ci.d/ |
H A D | check-dco.py | 44 commits = [] variable 46 commits = [[c[0:40], c[41:]] for c in log.strip().split("\n")] 48 for sha, subject in commits:
|
/openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
H A D | report.py | 29 commits = json.load(commits_file) 34 contributions = commits | reviews 37 user_commits = len(commits.get(user, {}).get("changes", []))
|
/openbmc/linux/Documentation/filesystems/ |
H A D | journalling.rst | 74 single outstanding transaction at any one time, remember nothing commits 102 these blocks commits. If you reused these blocks and crash happens, 106 structures only after the transaction freeing them commits. Ext4 uses 116 that need processing when the transaction commits. 135 Fast commits 138 JBD2 to also allows you to perform file-system specific delta commits known as 139 fast commits. In order to use fast commits, you will need to set following 148 File system is free to perform fast commits as and when it wants as long as it 162 Currently, only Ext4 implements fast commits. For details of its implementation 163 of fast commits, please refer to the top level comments in
|
/openbmc/linux/Documentation/driver-api/acpi/ |
H A D | linuxized-acpica.rst | 124 Linux, there is a release process to convert the ACPICA git commits into 133 | acpica / master (-) commits | 147 | acpica / master (+) commits | | | 191 Ideally, all of the ACPICA commits should be converted into Linux patches 218 4. ACPICA release fixups - ACPICA only tests commits using a set of the 226 5. Fast tracking of ACPICA commits - Some ACPICA commits are regression 228 respect to the ACPICA release process. If such commits are reverted or 236 utilities to obtain Linux patches corresponding to upstream ACPICA commits 254 2. Cherry-pick recent ACPICA commits
|
/openbmc/openbmc/meta-yadro/recipes-phosphor/ipmi/phosphor-ipmi-host/ |
H A D | 0003-Fix-version-parsing-update-AUX-revision-info.patch | 142 - uint16_t commits; 240 - // Capture the number of commits on top of the minor tag. 249 - commits = std::stoi(token.substr(0, location), 0, 16); 250 - rev.d[0] = (commits >> 8) | (commits << 8); 290 - commits = (!token.empty()) ? 1 : 0; 294 - rev.d[1] = (commits >> 8) | (commits << 8);
|
/openbmc/u-boot/tools/patman/ |
H A D | series.py | 35 self.commits = [] 92 self.commits.append(commit) 114 commit = self.commits[upto] 227 for commit in self.commits:
|
H A D | func_test.py | 59 for i, commit in enumerate(series.commits): 163 self.assertEqual('Cleaned %s patches' % len(series.commits), lines[0]) 171 for i, commit in enumerate(series.commits):
|
H A D | README | 18 It is configured almost entirely by tags it finds in your commits. 26 in one of your commits, the series will be sent there. 39 - Add tags into the commits within each branch to indicate where the 44 automatically determine the number of commits in it (optional) 245 By adding your change lists into your commits it is easier to 314 The basic workflow is to create your commits, add some tags to the top 399 and use git rebase -i to edit the commits, dropping the wip one. You add 418 Finally, you need to add a change log to the two commits you changed. You 429 commits and combine them into the cover letter, if you have one. So finally 430 you have a new series of commits: [all …]
|
/openbmc/openbmc-tools/tof-voters/ |
H A D | README.md | 8 The tool will query Gerrit for commits and reviews, process them, and generate a 15 ./voters analyze-commits --before "2022-01-01" --after "2021-06-30"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/nvme-cli/nvme-cli/ |
H A D | 0002-plugins-netapp-add-include-of-libgen.h-for-basename-.patch | 2 From: =?UTF-8?q?Daniel=20N=C3=A9ri?= <dne+commits@rb67.eu> 12 Signed-off-by: Daniel Néri <dne+commits@rb67.eu>
|
H A D | 0001-nvme-print-add-fallback-for-non-standard-locale-cate.patch | 2 From: =?UTF-8?q?Daniel=20N=C3=A9ri?= <dne+commits@rb67.eu> 14 Signed-off-by: Daniel Néri <dne+commits@rb67.eu>
|
/openbmc/phosphor-host-ipmid/docs/ |
H A D | contributing.md | 10 A good commit does exactly one thing. We prefer many small, atomic commits to 18 Often, creating small commits this way results in a number of commits which are 19 dependent on prior commits; Gerrit handles this situation well, so feel free to 20 push commits which are based on your change still in review. However, when 26 When pushing a stack of patches (current branch is >1 commits ahead of 27 origin/master), these commits will show up with that same relationship in
|
/openbmc/linux/Documentation/maintainer/ |
H A D | rebasing-and-merging.rst | 16 the kernel community is not scared by seeing merge commits in its 25 "Rebasing" is the process of changing the history of a series of commits 37 commits, adding patches, adding tags to commit changelogs, or changing 38 the order in which commits are applied. In the following text, this 90 If, instead, rebasing is limited to private trees, commits are based on a 98 development cycle included 1,126 merge commits - nearly 9% of the total. 105 current trunk so that no merge commits appear in the history. The kernel 200 creating a topic branch dedicated to the prerequisite commits that can be 203 commits for one development cycle so that those changes have time to
|