| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | control.py | 26 def GetActionSummary(is_summary, commits, selected, options): argument 32 if commits: 33 count = len(commits) 64 commits = series.commits 66 commits = None 67 print GetActionSummary(False, commits, boards_selected, 70 if commits: 71 for upto in range(0, len(series.commits), options.step): 72 commit = series.commits[upto] 240 options.step = len(series.commits) - 1 [all …]
|
| H A D | test.py | 78 commits = [ variable 108 self.commits = [] 110 for commit_info in commits: 117 self.commits.append(comm) 192 build.BuildBoards(self.commits, board_selected, keep_outputs=False, 202 self.assertEqual(count, len(commits) * len(boards) + 2) 204 build.ShowSummary(self.commits, board_selected) 207 self.assertEqual(lines[0].text, '01: %s' % commits[0][1]) 208 self.assertEqual(lines[1].text, '02: %s' % commits[1][1]) 221 self.assertEqual(lines[6].text, '03: %s' % commits[2][1]) [all …]
|
| H A D | builder.py | 422 self.ProduceResultSummary(result.commit_upto, self.commits, 459 if self.commits: 460 commit = self.commits[commit_upto] 1305 def ProduceResultSummary(self, commit_upto, commits, board_selected): argument 1311 if commits: 1313 commits[commit_upto].subject) 1321 def ShowSummary(self, commits, board_selected): argument 1331 self.commit_count = len(commits) if commits else 1 1332 self.commits = commits 1337 self.ProduceResultSummary(commit_upto, commits, board_selected) [all …]
|
| H A D | builderthread.py | 43 self.commits = [] 183 if self.builder.commits: 184 commit = self.builder.commits[commit_upto] 402 if job.commits: 407 for commit_upto in range(0, len(job.commits), job.step):
|
| H A D | README | 27 which boards fail on which commits, and which errors come up. It aims 61 Buildman is designed to build entire git branches, i.e. muliple commits. It 63 rebuild commits which have changed (and remove its old results for that 102 individual commits at present, unless (maybe) you point it at an empty 103 branch. Put all your commits in a branch, set the branch's upstream to a 112 Buildman is optimised for building many commits at once, for many boards. 115 a few commits or boards, it will be pretty slow. As a tip, if you don't 156 steps should get you started with a repo and some commits for testing. 161 $ # Add some commits to the branch, reading for testing 189 to build x86 commits. [all …]
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | get_maintainer.pl | 1389 my $commits; 1403 $commits = grep(/$pattern/, @lines); # of commits 1423 return ($commits, $signers_ref, $authors_ref, \@stats); 1457 my @commits = (); 1463 push(@commits, $1); 1467 return @commits; 1473 my @commits = (); 1475 return @commits if (!(-f $file)); 1491 push(@commits, $all_commits[$i]); 1503 push(@commits, vcs_save_commits($cmd)); [all …]
|
| H A D | mailmapper | 79 commits, name = line.split(None, 1) variable 83 commits_per_name[name] = int(commits)
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | get_maintainer.pl | 1585 my $commits; 1599 $commits = grep(/$pattern/, @lines); # of commits 1619 return ($commits, $signers_ref, $authors_ref, \@stats); 1653 my @commits = (); 1659 push(@commits, $1); 1663 return @commits; 1669 my @commits = (); 1671 return @commits if (!(-f $file)); 1687 push(@commits, $all_commits[$i]); 1699 push(@commits, vcs_save_commits($cmd)); [all …]
|
| H A D | checkkconfigsymbols.py | 195 commits = find_commits(symbol, args.diff) 196 if commits: 197 for commit in commits: 236 commits = execute(["git", "log", "--pretty=oneline", 239 return [x for x in commits.split("\n") if x]
|
| /OK3568_Linux_fs/yocto/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])
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | series.py | 36 self.commits = [] 93 self.commits.append(commit) 115 commit = self.commits[upto] 227 for commit in self.commits:
|
| H A D | README | 20 It is configured almost entirely by tags it finds in your commits. 28 in one of your commits, the series will be sent there. 41 - Add tags into the commits within each branch to indicate where the 46 automatically determine the number of commits in it (optional) 246 By adding your change lists into your commits it is easier to 315 The basic workflow is to create your commits, add some tags to the top 400 and use git rebase -i to edit the commits, dropping the wip one. You add 419 Finally, you need to add a change log to the two commits you changed. You 430 commits and combine them into the cover letter, if you have one. So finally 431 you have a new series of commits: [all …]
|
| H A D | func_test.py | 60 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):
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/buildroot/package/linuxptp/ |
| H A D | 0001-missing.h-drop-clock_nanosleep-replacement.patch | 6 Since uClibc-ng commits 68628fe7d463541bf3c33da6b214e63c0cc9feed 11 linuxthreads, nptl). These commits will be part of the upcoming 1.0.31
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/ |
| H A D | qtpdf_git.bb | 139 # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15-glibc 146 # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15 154 # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/87-based-glibc 172 # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/87-based 189 # this is 3 commits ahead of what submodule in 5.15.10 uses (caba2fcb0fe8a8d213c4c79d26da3bb88eee61… 206 # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15-qtpdf
|
| H A D | qtwebengine_git.bb | 154 # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15-glibc 161 # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15 169 # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/87-based-glibc 187 # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/87-based 204 # this is 3 commits ahead of what submodule in 5.15.10 uses (caba2fcb0fe8a8d213c4c79d26da3bb88eee61…
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | git.py | 820 commits = None 824 commits = bb.fetch2.runfetchcmd( 827 if commits: 828 open(rev_file, "w").write("%d\n" % int(commits)) 830 commits = open(rev_file, "r").readline(128).strip() 831 if commits: 832 return False, "%s+%s" % (commits, rev[:7])
|
| /OK3568_Linux_fs/kernel/fs/nfs/ |
| H A D | pnfs_nfs.c | 132 list_for_each_entry_rcu(array, &fl_cinfo->commits, cinfo_list) { in pnfs_find_commit_array_by_lseg() 151 list_add_rcu(&new->cinfo_list, &fl_cinfo->commits); in pnfs_add_commit_array() 231 list_for_each_entry_safe(array, tmp, &fl_cinfo->commits, cinfo_list) in pnfs_generic_ds_cinfo_destroy() 284 list_for_each_entry_rcu(array, &fl_cinfo->commits, cinfo_list) { in pnfs_generic_scan_commit_lists() 338 list_for_each_entry_rcu(array, &fl_cinfo->commits, cinfo_list) { in pnfs_generic_recover_commit_reqs() 391 list_for_each_entry(array, &fl_cinfo->commits, cinfo_list) { in pnfs_generic_search_commit_reqs() 492 list_for_each_entry_rcu(array, &fl_cinfo->commits, cinfo_list) { in pnfs_alloc_ds_commits_list()
|
| /OK3568_Linux_fs/buildroot/package/ruby/ |
| H A D | 0001-fix-default-coroutine-selection.patch | 3 https://github.com/ruby/ruby/pull/3567/commits/b570e7de87aaad8c903176d835e8124127f627b3
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | combo-layer.conf.example | 6 # Add 'Signed-off-by' to all commits that get imported automatically. 74 # The specified commits themselves do not get imported. Instead, an
|
| /OK3568_Linux_fs/buildroot/package/mono-gtksharp3/ |
| H A D | 0002-Mono-compilation-error-branch.patch | 7 https://github.com/mono/gtk-sharp/pull/299/commits/fe18352a4bc9f0cf3b6cf63b8cc03c5d6e41863b]
|
| /OK3568_Linux_fs/buildroot/package/mongrel2/ |
| H A D | 0003-fix-multiple-definition-error-when-building-with-gcc10.patch | 7 https://github.com/mongrel2/mongrel2/pull/343/commits/c51815b10c39c6e802bd1b56549f1d479b480fcc]
|