Home
last modified time | relevance | path

Searched full:branch (Results 1 – 25 of 1686) sorted by relevance

12345678910>>...68

/openbmc/openbmc/meta-arm/documentation/
H A Dreleases.md3branch consistent with the code name of that release. For example, the “dunfell” release of the Yo…
5branch. However, this methodology can be problematic if mimicked with the compatible layers. Compa…
8branch allows for focused testing (limiting the amount of resources needed for CI/CD), lessens/eli…
11 …e master branch is the normal internal process of pushing for code review and CI, approval and int…
12 …an LTS named branch, the preferred process is to upstream via the master branch, rebase the patch …
14 …preferred way above cannot be completed in time, upstreaming via the LTS branch can occur. This fo…
20 …ase of the YP LTS release. Meta-arm named branches will be created from the meta-arm master branch.
22 …ven time: master and the most recent Long Term Stable (LTS) as the named branch. All previous name…
24 Named branch release will coincide with Yocto Project releases. These non-LTS branches will be bug …
26 ### **Branch transitions**
[all …]
/openbmc/openbmc/poky/scripts/
H A Dpatchtest-get-branch3 # Get target branch from the corresponding mbox
6 # where target branch is defined inside brackets as subject prefix
22 branch = None
25 gitbranches = git.Git(filepath_repo).branch('-a').splitlines()
45 # that we can search for branch names within them.
49 # Iterate over the tokens and compare against the branch list to
57 for branch in branches:
59 if branch != "core" and stripped.rfind(branch) != -1:
75 …parser.add_argument('--default-branch', metavar='DEFAULT_BRANCH', default='master', help='Use this…
79 subject, branch = get_branch(args.repo, args.mbox, args.default_branch) variable
[all …]
H A Dcreate-pull-request24 …subject] [-r relative_to] [-i commit_id] [-d relative_dir] -u remote [-b branch] [-- <format-patch…
25 -b branch Branch name in the specified remote (default: current branch)
26 -l local branch Local branch name (default: HEAD)
29 -a Automatically push local branch (-l) to remote branch (-b),
37 -u remote The git remote where the branch is located, or set CPR_CONTRIB_REMOTE in env
56 BRANCH="$OPTARG"
133 if [ -z "$BRANCH" ]; then
134 BRANCH=$(git branch | grep -e "^\* " | cut -d' ' -f2)
135 echo "NOTE: Assuming remote branch '$BRANCH', use -b to override."
140 echo "NOTE: Assuming local branch HEAD, use -l to override."
[all …]
H A Doe-git-archive50 parser.add_argument('--branch-name', '-b',
51 default='{hostname}/{branch}/{machine}',
52 help="Git branch name (pattern) to use")
56 … default='{hostname}/{branch}/{machine}/{commit_count}-g{commit}/{tag_number}',
59 default='Results of {branch}:{commit} on {hostname}',
62 default='branch: {branch}\ncommit: {commit}\nhostname: {hostname}',
65 default='Test run #{tag_number} of {branch}:{commit} on {hostname}',
77 "actual target branch name (specified by "
78 "--branch-name). This option may be specified "
98 # Get keywords to be used in tag and branch names and messages
[all …]
/openbmc/openbmc/poky/documentation/overview-manual/
H A Ddevelopment-environment.rst174 branch of ``poky`` and you are going to use ``meta-intel``, be
175 sure to checkout the "&DISTRO_NAME_NO_CAP;" branch of ``meta-intel``.
232 responsible for the integrity of the development branch of a given Git
233 repository. The development branch is the "upstream" repository from which
236 organizing the underlying branch structure to reflect release strategies
254 branches into the "master" branch of the Git repository.
264 with whatever upstream branch they are working against. They are also
272 maintainer include them into an upstream branch. This process is called
279 development branch of the Git repository, which is controlled by the
310 have merged it into your local development branch, simply discard the
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dbuild-perf-test-wrapper.sh25 -c COMMITISH test (checkout) this commit, <branch>:<commit> can be
26 specified to test specific commit of certain branch
114 # Handle <branch>:<commit> format
117 branch=`echo "$commitish" | cut -d":" -f1`
120 branch="$commitish"
124 git branch -D $branch &> /dev/null
125 if ! git checkout -f $branch &> /dev/null; then
130 # Check that the specified branch really contains the commit
132 if [ -z "$commit_hash" -o "`git merge-base $branch $commit`" != "$commit_hash" ]; then
133 echo "ERROR: branch $branch does not contain commit $commit"
[all …]
/openbmc/u-boot/tools/patman/
H A Dgitutil.py47 # Add this in case we have a branch with the same name as a directory.
54 """Returns number of commits between HEAD and the tracking branch.
56 This looks back to the tracking branch and works out the number of commits
60 Number of patches that exist on top of the branch
84 def GuessUpstream(git_dir, branch): argument
85 """Tries to guess the upstream for a branch
87 This lists out top commits on a branch and tries to find a suitable
89 'git name-rev' returns a plain branch name, with no ! or ^ modifiers.
93 branch: Name of branch
97 Name of upstream branch (e.g. 'upstream/master') or None if none
[all …]
/openbmc/openbmc/poky/meta/lib/patchtest/
H A Dmbox.py66 self.branch = self.get_branch()
73 # include the branch name in the subject, so parse that
78 branch, branches, valid_branches = None, [], []
86 branch = valid_branches[0]
88 # Get the branch name excluding any brackets. If nothing was
89 # found, then assume there was no branch tag in the subject line
91 if branch is not None:
92 return branch.split(']')[0]
97 def valid_branch(branch): argument
98 """ Check if branch is valid name """
[all …]
H A Drepo.py20 def __init__(self, patch, repodir, commit=None, branch=None): argument
26 # targeted branch defined on the patch may be invalid, so make sure there
27 # is a corresponding remote branch
29 if self.patch.branch in self.repo.branches:
30 valid_patch_branch = self.patch.branch
35 # 2. branch given at cmd line
36 # 3. branch given at the patch
39 self._get_commitid(branch) or \
45 # create working branch. Use the '-B' flag so that we just
84 self.repo.git.execute(['git', 'branch', '-D', self._workingbranch])
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dgitarchivetests.py70 …keywords = {'commit': self.TEST_COMMIT, 'branch': self.TEST_BRANCH, "commit_count": self.TEST_COMM…
74 … "Results of {branch}:{commit}", "branch: {branch}\ncommit: {commit}", "{branch}",
75 False, "{branch}/{commit_count}-g{commit}/{tag_number}",
76 'Test run #{tag_number} of {branch}:{commit}', '',
84 …keywords = {'commit': self.TEST_COMMIT, 'branch': self.TEST_BRANCH, "commit_count": self.TEST_COMM…
88 … "Results of {branch}:{commit}", "branch: {branch}\ncommit: {commit}", "{branch}",
89 False, "{branch}/{commit_count}-g{commit}/{tag_number}",
90 'Test run #{tag_number} of {branch}:{commit}', '',
97 tag_name = "{branch}/{commit_number}-g{commit}/{tag_number}"
100 revs = ga.get_test_revs(logger, git_obj, tag_name, branch="main")
/openbmc/openbmc-build-scripts/jenkins/
H A Drun-meta-ci11 # GERRIT_BRANCH: Branch under test (default is master)
19 # TODO - Need test repo to branch
20 …ne https://github.com/openbmc/openbmc-test-automation.git --branch ${GERRIT_BRANCH} --single-branch
21 git clone https://github.com/openbmc/openbmc-test-automation.git --branch master --single-branch
33 git clone https://github.com/openbmc/openbmc.git --branch "${GERRIT_BRANCH}" --single-branch
/openbmc/openbmc/poky/bitbake/lib/bblayers/
H A Dlayerindex.py29 def get_fetch_layer(self, fetchdir, url, subdir, fetch_layer, branch, shallow=False): argument
40 if branch:
41 cmd.extend(['-b' , branch])
45 logger.error("Failed to download %s (%s)" % (url, branch))
52 elif os.path.exists(repodir) and branch:
54 If the repo is already cloned, ensure it is on the correct branch,
58 cmd = base_cmd + ['branch']
64 if branch != completed_proc.stdout[2:-1]:
69 cmd = base_cmd + ['checkout', branch]
72 # Could be due to original shallow clone on a different branch for example
[all …]
/openbmc/openbmc/poky/documentation/
H A Dset_versions.py3 # Add version information to poky.yaml based upon current git branch/tags
126 # We're floating on a branch
127branch = subprocess.run(["git", "branch", "--show-current"], stdout=subprocess.PIPE, stderr=subpro…
128 ourbranch = branch
129 if branch != "master" and branch not in release_series:
130 # We're not on a known release branch so we have to guess. Compare the numbers of commits
131 … # from each release branch and assume the smallest number of commits is the one we're based off
139 print("Branch %s has count %s" % (b, count))
143 branch = possible_branch variable
145 branch = "master"
[all …]
/openbmc/qemu/scripts/ci/
H A Dgitlab-pipeline-status34 def get_local_branch_commit(branch): argument
36 Returns the commit sha1 for the *local* branch named "staging"
38 result = subprocess.run(['git', 'rev-parse', branch],
44 if result == branch:
45 raise ValueError("There's no local branch named '%s'" % branch)
47 raise ValueError("Branch '%s' HEAD doesn't look like a sha1" % branch)
140 parser.add_argument('-b', '--branch', type=str, default="staging",
141 help=('Specify the branch to check. '
142 'Use HEAD for your current branch. '
148 'commit associated with the default branch '
[all …]
/openbmc/phosphor-bmc-code-mgmt/i2c-vr/
H A Di2cvr_device.cpp15 // NOLINTBEGIN(clang-analyzer-core.uninitialized.Branch) in updateDevice()
17 // NOLINTEND(clang-analyzer-core.uninitialized.Branch) in updateDevice()
24 // NOLINTBEGIN(clang-analyzer-core.uninitialized.Branch) in updateDevice()
26 // NOLINTEND(clang-analyzer-core.uninitialized.Branch) in updateDevice()
40 // NOLINTBEGIN(clang-analyzer-core.uninitialized.Branch) in getVersion()
42 // NOLINTEND(clang-analyzer-core.uninitialized.Branch) in getVersion()
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mx27/
H A Drelocate.S23 * 0x00000000 reset indirect branch to [0x00000014]
24 * 0x00000004 undefined instruction indirect branch to [0xfffffef0]
25 * 0x00000008 software interrupt indirect branch to [0xfffffef4]
26 * 0x0000000c prefetch abort indirect branch to [0xfffffef8]
27 * 0x00000010 data abort indirect branch to [0xfffffefc]
29 * 0x00000018 IRQ indirect branch to [0xffffff00]
30 * 0x0000001c FIQ indirect branch to [0xffffff04]
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/
H A D__init__.py189 <url>;branch=<branch>;cache=<cache>;desc=<description>
191 Note: the 'branch' parameter if set can select multiple branches by using
192 comma, such as 'branch=master,morty,pyro'. However, many operations only look
193 at the -first- branch specified!
201 https://layers.openembedded.org/layerindex/api/;branch=master;desc=OpenEmbedded%20Layer%20Index
243 file://<path>;branch=<branch>
276 We check the indexes entries to see if they have a branch set, as well as
287 def find_vcs_url(self, vcs_url, branch=None): argument
290 If a branch has not been specified, we will iterate over the branches in
291 the default configuration until the first vcs_url/branch match.'''
[all …]
H A Drestapi.py77 if 'branch' in params:
78 branches = params['branch'].split(',')
79 index.config['BRANCH'] = branches
91 for branch in branches:
92 if branch != '*':
95 if br['name'] == branch:
103 index.add_raw_element('branches', layerindexlib.Branch, newpBranch)
190 if 'branch' in params:
191 branches = params['branch'].split(',')
192 index.config['BRANCH'] = branches
[all …]
/openbmc/openbmc/poky/documentation/contributor-guide/
H A Dsubmit-changes.rst85 Create a new branch
88 Then, create a new branch in your local Git repository
89 for your changes, starting from the reference branch in the upstream
92 $ git checkout <ref-branch>
96 create one branch for each set.
101 In each branch, you should group your changes into small, controlled and
268 #. *Describe the Changes in your Branch:* If you have more than one commit
269 in your branch, it's recommended to provide a cover letter describing
273 in the branch itself::
275 git branch --edit-description
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/fixtures/
H A Dpoky.xml13 <field type="CharField" name="branch">scarthgap</field>
19 <field type="CharField" name="branch">HEAD</field>
25 <field type="CharField" name="branch">master</field>
31 <field type="CharField" name="branch">whinlatter</field>
37 <field type="CharField" name="branch">walnascar</field>
43 <field type="CharField" name="branch">styhead</field>
49 <field type="CharField" name="branch">kirkstone</field>
60 …oject.org/cgit/cgit.cgi/poky/log/?h=scarthgap"&gt;Yocto Project Scarthgap branch&lt;/a&gt;.</field>
74 …s://git.yoctoproject.org/cgit/cgit.cgi/poky/log/"&gt;Yocto Project Master branch&lt;/a&gt;.</field>
81 …ect.org/cgit/cgit.cgi/poky/log/?h=whinlatter"&gt;Yocto Project Whinlatter branch&lt;/a&gt;.</field>
[all …]
/openbmc/u-boot/tools/buildman/
H A Dcontrol.py174 # branch. We also build the upstream commit as a control so we can see
175 # problems introduced by the first commit on the branch.
177 has_range = options.branch and '..' in options.branch
179 if not options.branch:
184 options.branch)
187 options.branch)
192 options.branch))
198 str = ("No commits found to process in branch '%s': "
199 "set branch's upstream or use -c flag" % options.branch)
232 # then the ones in the branch. We would like to do something like
[all …]
/openbmc/openbmc/meta-arm/meta-arm/recipes-bsp/trusted-firmware-m/
H A Dtrusted-firmware-m-git-src.inc24 SRC_URI = "${SRC_URI_TRUSTED_FIRMWARE_M};branch=${SRCBRANCH_tfm};name=tfm;destsuffix=git/tfm \
25 …${SRC_URI_TRUSTED_FIRMWARE_M_EXTRAS};branch=${SRCBRANCH_tfm-extras};name=tfm-extras;destsuffix=git…
26 …${SRC_URI_TRUSTED_FIRMWARE_M_TESTS};branch=${SRCBRANCH_tfm-tests};name=tfm-tests;destsuffix=git/tf…
27 … ${SRC_URI_TRUSTED_FIRMWARE_M_CMSIS};branch=${SRCBRANCH_cmsis};name=cmsis;destsuffix=git/cmsis \
28 …${SRC_URI_TRUSTED_FIRMWARE_M_MBEDTLS};branch=${SRCBRANCH_mbedtls};name=mbedtls;destsuffix=git/mbed…
29 …${SRC_URI_TRUSTED_FIRMWARE_M_MCUBOOT};branch=${SRCBRANCH_mcuboot};name=mcuboot;destsuffix=git/mcub…
30 … ${SRC_URI_TRUSTED_FIRMWARE_M_QCBOR};branch=${SRCBRANCH_qcbor};name=qcbor;destsuffix=git/qcbor \
31 …${SRC_URI_TRUSTED_FIRMWARE_M_PSA_ADAC};branch=${SRCBRANCH_tfm-psa-adac};name=tfm-psa-adac;destsuff…
32 …${SRC_URI_TRUSTED_FIRMWARE_M_T_COSE};branch=${SRCBRANCH_t-cose};name=t-cose;destsuffix=git/t_cose \
H A Dtrusted-firmware-m-2.2.0-src.inc24 SRC_URI = "${SRC_URI_TRUSTED_FIRMWARE_M};branch=${SRCBRANCH_tfm};name=tfm;destsuffix=git/tfm \
25 …${SRC_URI_TRUSTED_FIRMWARE_M_EXTRAS};branch=${SRCBRANCH_tfm-extras};name=tfm-extras;destsuffix=git…
26 …${SRC_URI_TRUSTED_FIRMWARE_M_TESTS};branch=${SRCBRANCH_tfm-tests};name=tfm-tests;destsuffix=git/tf…
27 … ${SRC_URI_TRUSTED_FIRMWARE_M_CMSIS};branch=${SRCBRANCH_cmsis};name=cmsis;destsuffix=git/cmsis \
28 …${SRC_URI_TRUSTED_FIRMWARE_M_MBEDTLS};branch=${SRCBRANCH_mbedtls};name=mbedtls;destsuffix=git/mbed…
29 …${SRC_URI_TRUSTED_FIRMWARE_M_MCUBOOT};branch=${SRCBRANCH_mcuboot};name=mcuboot;destsuffix=git/mcub…
30 … ${SRC_URI_TRUSTED_FIRMWARE_M_QCBOR};branch=${SRCBRANCH_qcbor};name=qcbor;destsuffix=git/qcbor \
31 …${SRC_URI_TRUSTED_FIRMWARE_M_PSA_ADAC};branch=${SRCBRANCH_tfm-psa-adac};name=tfm-psa-adac;destsuff…
32 …${SRC_URI_TRUSTED_FIRMWARE_M_T_COSE};branch=${SRCBRANCH_t-cose};name=t-cose;destsuffix=git/t_cose \
H A Dtrusted-firmware-m-2.1.1-src.inc19 SRC_URI = "${SRC_URI_TRUSTED_FIRMWARE_M};branch=${SRCBRANCH_tfm};name=tfm;destsuffix=git/tfm \
20 …${SRC_URI_TRUSTED_FIRMWARE_M_EXTRAS};branch=${SRCBRANCH_tfm-extras};name=tfm-extras;destsuffix=git…
21 …${SRC_URI_TRUSTED_FIRMWARE_M_TESTS};branch=${SRCBRANCH_tfm-tests};name=tfm-tests;destsuffix=git/tf…
22 … ${SRC_URI_TRUSTED_FIRMWARE_M_CMSIS};branch=${SRCBRANCH_cmsis};name=cmsis;destsuffix=git/cmsis \
23 …${SRC_URI_TRUSTED_FIRMWARE_M_MBEDTLS};branch=${SRCBRANCH_mbedtls};name=mbedtls;destsuffix=git/mbed…
24 …${SRC_URI_TRUSTED_FIRMWARE_M_MCUBOOT};branch=${SRCBRANCH_mcuboot};name=mcuboot;destsuffix=git/mcub…
25 … ${SRC_URI_TRUSTED_FIRMWARE_M_QCBOR};branch=${SRCBRANCH_qcbor};name=qcbor;destsuffix=git/qcbor \
26 …${SRC_URI_TRUSTED_FIRMWARE_M_PSA_ADAC};branch=${SRCBRANCH_tfm-psa-adac};name=tfm-psa-adac;destsuff…
/openbmc/openbmc-build-scripts/
H A Drun-unit-test-docker.sh10 # to their corresponding repository. If a BRANCH parameter is input then the
12 # branch. If the branch does not exist in the repository, then master will be
19 # BRANCH: Optional, branch to build from each of the
21 # used if input branch not provided or not found
36 BRANCH=${BRANCH:-"master"}
72 export BRANCH
85 -p,${UNIT_TEST_PKG},-b,$BRANCH,\

12345678910>>...68