Home
last modified time | relevance | path

Searched refs:commit (Results 1 – 25 of 73) sorted by relevance

123

/Zephyr-latest/scripts/footprint/
Dcompare_footprint84 def get_git_commit(commit): argument
86 proc = subprocess.Popen('git rev-parse %s' % commit, stdout=subprocess.PIPE,
92 def sanity_results_filename(commit=None, cwd=os.environ.get('ZEPHYR_BASE')): argument
93 if not commit:
96 if commit == RELEASE_DATA:
99 file_name = "%s.csv" % commit
103 def git_checkout(commit, cwd=os.environ.get('ZEPHYR_BASE')): argument
109 proc = subprocess.Popen('git reset %s --hard' % commit,
119 def run_sanity_footprint(commit=None, cwd=os.environ.get('ZEPHYR_BASE'), argument
122 output_file = sanity_results_filename(commit)
[all …]
Dupload_data.py27 def create_event(data, board, feature, commit, current_time, typ, application): argument
36 "commit": commit,
116 commit = file_data[1]
124 gitcommit = repo.commit(f'{commit}')
127 cidx = commit.find('-g') + 2
128 gitcommit = repo.commit(f'{commit[cidx:]}')
134 create_event(data, board, feature, commit, current_time, typ, app)
/Zephyr-latest/scripts/gitlint/
Dzephyr_commit_rules.py30 def validate(self, commit): argument
31 …filtered = [x for x in commit.message.body if not x.lower().startswith("signed-off-by") and x != '…
48 def validate(self, commit): argument
49 line_count = len(commit.message.body)
66 def validate(self, commit): argument
69 for line in commit.message.body:
/Zephyr-latest/tests/subsys/settings_commit_prio/
DREADME.rst3 Settings Subsystem commit priority Test
9 This test is used to test the Settings Subsystem commit priority.
/Zephyr-latest/tests/subsys/mgmt/mcumgr/settings_mgmt/src/
Dsettings.h12 void settings_state_get(bool *set, bool *get, bool *export, bool *commit);
Dsettings.c99 void settings_state_get(bool *set, bool *get, bool *export, bool *commit) in settings_state_get() argument
104 *commit = commit_called; in settings_state_get()
/Zephyr-latest/doc/project/
Dissues.rst20 as the use case is known to be working on earlier commit or release.
21 In this case, providing directly the guilty commit when submitting the bug
24 To identify the commit causing the regression, several methods could be used,
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_senml_cbor_regenerate.sh13 git commit -s -m"pre-patch"
DREADME_lwm2m30 …e unpatched changes, then committing the desired patches in a subsequent commit, then creating the…
/Zephyr-latest/doc/contribute/
Dguidelines.rst129 developer. In the commit message of the contribution, (described more fully
169 The "sign-off" in the DCO is a "Signed-off-by:" line in each commit's log
180 author the commit (CI will fail if there is no match)
182 You can automatically add the Signed-off-by: line to your commit body using
183 ``git commit -s``. Use other commits in the zephyr git history as examples.
189 - If you are altering an existing commit created by someone else, you must add
363 Changes are submitted as Git commits. Each commit has a *commit
364 message* describing the change. Acceptable commit messages look like
376 fit your commit.
378 Here is an example of a good commit message.
[all …]
Dcontributor_expectations.rst58 in mind each commit in the PR must still build cleanly and pass all the CI
95 - Each commit in the PR must provide a commit message following the
96 :ref:`commit-guidelines`.
117 Each commit should correspond to a self-contained, meaningful change. For example, adding a
120 commit.
124 Every commit in the pull request must build successfully and pass all relevant tests. This
125 ensures that git bisect can be used effectively to identify the specific commit that introduced
139 Use interactive rebasing (git rebase -i) to clean up the commit history before submitting the
142 * Squashing small, incomplete commits into a single cohesive commit.
143 * Ensuring that each commit remains bisectable.
[all …]
/Zephyr-latest/scripts/ci/
Dguideline_check.py68 commit = sh.git("diff", args.commits, **sh_special_args)
69 patch_set = PatchSet(commit)
/Zephyr-latest/scripts/
Drequirements-extras.txt9 # helper for developers - check git commit messages
/Zephyr-latest/submanifests/
Dexample.yaml.sample11 # If you want to fetch a particular commit rather than the main
/Zephyr-latest/
D.editorconfig85 # Git commit messages
D.gitlint39 # commit-msg title must be matched to.
60 # it in the commit message.
DCONTRIBUTING.rst33 to verify several aspects of the PR including Git commit formatting,
/Zephyr-latest/doc/contribute/style/
Dindex.rst29 code, make the file *$ZEPHYR_BASE/.git/hooks/pre-commit* executable and edit
38 Instead of running checkpatch at each commit, you may prefer to run it only
/Zephyr-latest/scripts/west_commands/
Dpatch.py489 subject = cm.commit.message.splitlines()[0]
499 "author": cm.commit.author.name or "Hidden",
500 "email": cm.commit.author.email or "hidden@github.com",
501 "date": cm.commit.author.date.strftime("%Y-%m-%d"),
/Zephyr-latest/scripts/release/
Dlist_devicetree_bindings_changes.py361 def load_compat2binding(commit: str) -> Compat2Binding:
366 def git_worktree(directory: os.PathLike, commit: str):
368 subprocess.run(['git', 'worktree', 'add', '--detach', fspath, commit],
376 with git_worktree(tmpdir, commit):
/Zephyr-latest/drivers/flash/
Dflash_stm32h7x.c93 bool commit) in write_opt() argument
118 if (commit) { in write_opt()
186 bool commit = false; in flash_stm32_update_wp_sectors() local
212 commit = true; in flash_stm32_update_wp_sectors()
220 if (commit) { in flash_stm32_update_wp_sectors()
/Zephyr-latest/scripts/checkpatch/
Dcheck_known_checkpatch_issues.sh142 git commit -m "${msg}"
/Zephyr-latest/doc/services/device_mgmt/
Dmcumgr_backporting.rst75 Even if some of the commits require changes, keep the commit messages of all the ported commits
80 "Backporting commit <sha>"
82 … ``<sha>`` indicates the SHA of the commit after it has been already merged in the current version.
/Zephyr-latest/.github/ISSUE_TEMPLATE/
D001_bug_report.md30 specific commit?
/Zephyr-latest/lib/posix/options/getopt/
DREADME47 commit:

123