/openbmc/u-boot/tools/patman/ |
H A D | gitutil.py | 33 if git_dir: 34 cmd += ['--git-dir', git_dir] 84 def GuessUpstream(git_dir, branch): argument 100 pipe = [LogCmd(branch, git_dir=git_dir, oneline=True, count=100)] 114 def GetUpstream(git_dir, branch): argument 171 pipe = [LogCmd(range_expr, git_dir=git_dir, oneline=True)] 215 if git_dir: 228 def Clone(git_dir, output_dir): argument 234 pipe = ['git', 'clone', git_dir, '.'] 240 def Fetch(git_dir=None, work_tree=None): argument [all …]
|
H A D | patchstream.py | 385 def GetMetaDataForList(commit_range, git_dir=None, count=None, argument 406 git_dir=git_dir)
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | git.py | 19 git_dir = self._run_git_cmd_at(['rev-parse', '--git-dir'], path) 20 git_dir = git_dir if os.path.isabs(git_dir) else os.path.join(path, git_dir) 21 self.git_dir = os.path.realpath(git_dir) 25 self.top_dir = self.git_dir
|
H A D | gitarchive.py | 61 tmp_index = os.path.join(repo.git_dir, 'index.oe-git-archive') 165 def gitarchive(data_dir, git_dir, no_create, bare, commit_msg_subject, commit_msg_body, branch_name… argument 170 data_repo = init_git_repo(git_dir, no_create, bare, log)
|
/openbmc/u-boot/tools/buildman/ |
H A D | control.py | 140 options.git_dir = os.path.join(options.git, '.git') 183 count, msg = gitutil.CountCommitsInRange(options.git_dir, 186 count, msg = gitutil.CountCommitsInBranch(options.git_dir, 245 range_expr = gitutil.GetRangeInBranch(options.git_dir, 247 upstream_commit = gitutil.GetUpstream(options.git_dir, 250 options.git_dir, 1, series=None, allow_overwrite=True) 253 options.git_dir, None, series, allow_overwrite=True) 257 options.git_dir, count, series=None, allow_overwrite=True) 292 builder = Builder(toolchains, output_dir, options.git_dir,
|
H A D | builder.py | 223 def __init__(self, toolchains, base_dir, git_dir, num_threads, num_jobs, argument 266 self.git_dir = git_dir 1485 git_dir = os.path.join(thread_dir, '.git') 1490 if setup_git and self.git_dir: 1491 src_dir = os.path.abspath(self.git_dir) 1492 if os.path.exists(git_dir): 1493 gitutil.Fetch(git_dir, thread_dir)
|
H A D | builderthread.py | 194 git_dir = os.path.join(work_dir, '.git') 195 gitutil.Checkout(commit.hash, git_dir, work_dir,
|
H A D | test.py | 330 options.git_dir = None
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | git-make-shallow | 33 git_dir = check_output(git_cmd + ['rev-parse', '--git-dir']).rstrip() 34 shallow_file = os.path.join(git_dir, 'shallow') 59 shrink_repo(git_dir) 162 def shrink_repo(git_dir): argument 167 os.unlink(os.path.join(git_dir, 'objects', 'info', 'alternates'))
|
/openbmc/openbmc/poky/scripts/lib/resulttool/ |
H A D | store.py | 72 logger.info('Storing test result into git repository %s' % args.git_dir) 74 gitarchive.gitarchive(tempdir, args.git_dir, False, False,
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | externalsrc.bbclass | 210 git_dir = None 213 git_dir = os.path.join(s_dir, 217 if git_dir == top_git_dir: 218 git_dir = None 223 if git_dir is not None: 224 oe_hash_file = os.path.join(git_dir, 'oe-devtool-tree-sha1-%s' % d.getVar('PN')) 227 shutil.copyfile(os.path.join(git_dir, 'index'), tmp_index.name)
|
/openbmc/openbmc/poky/scripts/ |
H A D | oe-git-archive | 106 gitarchive.gitarchive(args.data_dir, args.git_dir, args.no_create, args.bare,
|