/qemu/scripts/ |
H A D | git-submodule.sh | 6 substat=".git-submodule-status" 13 test -z "$GIT" && GIT=$(command -v git) 18 if ! test -e ".git"; then 19 no_git_error='no git checkout exists' 20 elif test -z "$GIT"; then 21 no_git_error='git binary not found' 31 echo "Unable to automatically checkout GIT submodules '$modules'." 32 echo "If you require use of an alternative GIT binary (for example to" 34 echo "GIT submodule checkout with:" 40 echo " $ GIT='tsocks git' scripts/git-submodule.sh update $modules" [all …]
|
H A D | git.orderfile | 2 # order file for git, to produce patches which are easier to review 6 # git diff -O scripts/git.orderfile ... 8 # add to git config: 9 # git config diff.orderFile scripts/git.orderfile
|
H A D | clean-includes | 17 # clean-includes [--git subjectprefix] [--check-dup-head] file ... 19 # clean-includes [--git subjectprefix] [--check-dup-head] --all 21 # If the --git subjectprefix option is given, then after making 22 # the changes to the files this script will create a git commit 45 # for i in $(git ls-tree --name-only HEAD) ; do test -f $i && \ 50 GIT=no 59 "--git") 61 echo "--git option requires an argument" 65 GIT=yes 84 echo "Usage: clean-includes [--git subjectprefix] [--check-dup-head] [--all | foo.c ...]" [all …]
|
H A D | get_maintainer.pl | 84 "available" => '(which("git") ne "") && (-e ".git")', 86 "git log --no-color --follow --since=\$email_git_since " . 94 "git log --no-color " . 102 "git log --no-color " . 108 "blame_range_cmd" => "git blame -l -L \$diff_start,+\$diff_length \$file", 109 "blame_file_cmd" => "git blame -l \$file", 171 'git!' => \$email_git, 172 'git-all-signature-types!' => \$email_git_all_signature_types, 173 'git-blame!' => \$email_git_blame, 174 'git-blame-signatures!' => \$email_git_blame_signatures, [all …]
|
H A D | archive-source.sh | 41 git submodule deinit $sub_deinit 49 if ! git diff-index --quiet --ignore-submodules=all HEAD -- &>/dev/null 51 retval=$(git stash create) 77 git archive --format tar "$(tree_ish)" > "$tar_file" 83 tar --append --file "$tar_file" --exclude=.git subprojects/"$(subproject_dir $sp)"
|
H A D | make-release | 53 git clone --single-branch -b "v${version}" -c advice.detachedHead=false \ 58 git submodule update --init --single-branch 61 (cd roms/seabios && git describe --tags --long --dirty > .version) 71 git submodule update --init --depth 1 -- \ 78 exclude=(--exclude=.git)
|
/qemu/ |
H A D | .gitmodules | 3 url = https://gitlab.com/qemu-project/seabios.git/ 6 url = https://gitlab.com/qemu-project/SLOF.git 9 url = https://gitlab.com/qemu-project/ipxe.git 12 url = https://gitlab.com/qemu-project/openbios.git 15 url = https://gitlab.com/qemu-project/qemu-palcode.git 18 url = https://gitlab.com/qemu-project/u-boot.git 21 url = https://gitlab.com/qemu-project/skiboot.git 24 url = https://gitlab.com/qemu-project/QemuMacDrivers.git 27 url = https://gitlab.com/qemu-project/seabios-hppa.git 30 url = https://gitlab.com/qemu-project/u-boot-sam460ex.git [all …]
|
H A D | README.rst | 70 The QEMU source code is maintained under the GIT version control system. 74 git clone https://gitlab.com/qemu-project/qemu.git 76 When submitting patches, one common approach is to use 'git 77 format-patch' and/or 'git send-email' to format & send the mail to the 94 git clone https://gitlab.com/qemu-project/qemu-web.git 98 A 'git-publish' utility was created to make above process less 101 requires a working 'git send-email' setup, and by default doesn't 107 * `<https://github.com/stefanha/git-publish>`_ 109 The workflow with 'git-publish' is: 113 $ git checkout master -b my-feature [all …]
|
H A D | .git-blame-ignore-revs | 2 # List of code-formatting clean ups the git blame can ignore 4 # git blame --ignore-revs-file .git-blame-ignore-revs 8 # git config blame.ignoreRevsFile .git-blame-ignore-revs
|
H A D | gitdm.config | 4 # It is to be used with LWN's git dataminer tool for generating 8 # git://git.lwn.net/gitdm.git 12 # git log --numstat --since "Last Year" | gitdm -n -l 10
|
H A D | .patchew.yml | 140 git rev-parse base > /dev/null || exit 0 155 # Testing script will be invoked under the git checkout with 184 # Testing script will be invoked under the git checkout with 209 requirements: qemu-x86,x86_64,git 213 # Testing script will be invoked under the git checkout with 238 # Testing script will be invoked under the git checkout with 284 git: 287 git config user.name > /dev/null 2>&1 296 git: 297 push_to: git@github.com:patchew-project/qemu
|
H A D | MAINTAINERS | 25 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. 99 T: git git://git.corpit.ru/qemu.git trivial-patches 100 T: git https://github.com/vivier/qemu.git trivial-patches 237 T: git https://github.com/quic/qemu.git hex-next 401 T: git https://gitlab.com/ehabkost/qemu.git x86-next 469 T: git https://github.com/borntraeger/qemu.git s390-next 1795 T: git https://github.com/borntraeger/qemu.git s390-next 1808 T: git https://github.com/borntraeger/qemu.git s390-next 1973 T: git https://gitlab.com/ehabkost/qemu.git machine-next 2041 T: git https://gitlab.com/jsnow/qemu.git ide [all …]
|
/qemu/docs/devel/ |
H A D | submitting-a-patch.rst | 66 Base patches against current git master 75 not yet part of the git master branch. To aid continuous integration 90 `git bisect <http://git-scm.com/docs/git-bisect>`__ without hitting 109 from the raw code motion. Use a one-time setup of ``git config 110 diff.renames true;`` ``git config diff.algorithm patience`` (refer to 111 `git-config <http://git-scm.com/docs/git-config>`__). The 'diff.renames' 123 git format-patch --stdout -1 > patch; 153 QEMU follows the usual standard for git commit messages: the first line 157 not end in a dot. Look at ``git shortlog -30`` for an idea of sample 161 commit message (so that the text still shows up nicely with "git show" [all …]
|
H A D | submitting-a-pull-request.rst | 19 do this is to use ``git format-patch --cover-letter`` to create the 21 details that ``git request-pull`` outputs. 25 ``--subject-prefix=PULL`` in your ``git format-patch`` command). This 38 directly to your git repo it will include the tags automatically; if 70 <https://git.linaro.org/people/peter.maydell/misc-scripts.git/tree/make-pullreq>`__
|
H A D | code-provenance.rst | 15 bottom of every git commit:: 57 ``Signed-off-by`` lines, matches that of the git commit ``Author`` field. 70 this scenario, git commits will usually be expected to have a ``Signed-off-by`` 159 git commands 162 When creating, or amending, a commit the ``-s`` flag to ``git commit`` will 163 append a suitable line matching the configured git author details. 165 If preparing patches using the ``git format-patch`` tool, the ``-s`` flag can 169 git rebase master -x 'git commit --amend --no-edit -s' 214 tracker, author's git repo, etc) when sending it for review 253 must also be provided, either directly, or through a git submodule link. [all …]
|
H A D | loads-stores.rst | 66 Regexes for git grep: 123 Regexes for git grep: 157 Regexes for git grep: 195 Regexes for git grep: 234 Regexes for git grep: 268 Regexes for git grep: 299 Regexes for git grep: 328 Regexes for git grep: 385 Regexes for git grep: 403 Regexes for git grep: [all …]
|
/qemu/.gitlab-ci.d/ |
H A D | check-dco.py | 20 repourl = "https://gitlab.com/%s/%s.git" % (namespace, reponame) 22 print(f"adding upstream git repo @ {repourl}") 23 subprocess.check_call(["git", "remote", "add", "check-dco", repourl]) 24 subprocess.check_call(["git", "fetch", "--refetch", "check-dco", "master"]) 26 ancestor = subprocess.check_output(["git", "merge-base", 32 subprocess.check_call(["git", "remote", "rm", "check-dco"]) 39 log = subprocess.check_output(["git", "log", "--format=%H %s", 50 msg = subprocess.check_output(["git", "show", "-s", sha], 86 This can be achieved by passing the "-s" flag to the "git commit" command. 88 To bulk update all commits on current branch "git rebase" can be used: [all …]
|
H A D | check-patch.py | 20 repourl = "https://gitlab.com/%s/%s.git" % (namespace, reponame) 22 print(f"adding upstream git repo @ {repourl}") 25 # ancestor between the user's branch and current git master. 26 subprocess.check_call(["git", "remote", "add", "check-patch", repourl]) 27 subprocess.check_call(["git", "fetch", "--refetch", "check-patch", "master"]) 29 ancestor = subprocess.check_output(["git", "merge-base", 35 log = subprocess.check_output(["git", "log", "--format=%H %s", 39 subprocess.check_call(["git", "remote", "rm", "check-patch"])
|
/qemu/docs/devel/testing/ |
H A D | ci-jobs.rst.inc | 21 git-push command line arguments. 27 git push -o ci.variable="QEMU_CI_EXAMPLE_VAR=value" myrepo mybranch 33 Setting aliases in your git config 41 git config --local alias.push-ci "push -o ci.variable=QEMU_CI=1" 42 git config --local alias.push-ci-now "push -o ci.variable=QEMU_CI=2" 48 git push-ci 54 git push-ci-now 70 repository CI settings, or as git push variables, to influence
|
/qemu/pc-bios/s390-ccw/ |
H A D | Makefile | 131 .PHONY: git-submodule-update 132 $(SRC_PATH)/../../.git-submodule-status: git-submodule-update config-host.mak 133 Makefile: $(SRC_PATH)/../../.git-submodule-status 135 git-submodule-update: 137 …$(quiet-@)GIT=git "$(SRC_PATH)/../../scripts/git-submodule.sh" $(GIT_SUBMODULES_ACTION) $(GIT_SUBM…
|
/qemu/tests/docker/dockerfiles/ |
H A D | debian-bootstrap.pre | 68 DEBOOTSTRAP_SOURCE=https://salsa.debian.org/installer-team/debootstrap.git 69 git clone ${DEBOOTSTRAP_SOURCE} ./debootstrap.git 70 export DEBOOTSTRAP_DIR=./debootstrap.git 71 DEBOOTSTRAP=./debootstrap.git/debootstrap
|
/qemu/pc-bios/ |
H A D | README | 17 built from git tag qemu-slof-20241106. 34 https://github.com/rth7680/qemu-palcode.git 38 A git mirror is available at: https://gitlab.com/qemu-project/u-boot.git 66 were built at git tag "edk2-stable202302". The firmware binaries bundle parts 67 of the OpenSSL project, at git tag "OpenSSL_1_1_1s" (the OpenSSL tag is a
|
/qemu/docs/interop/ |
H A D | vhost-vdpa.rst | 15 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=4c8cf31885f69e86be0b5…
|
/qemu/docs/system/riscv/ |
H A D | shakti-c.rst | 41 $ git clone https://gitlab.com/behindbytes/shakti-sdk.git 69 $ git clone https://github.com/riscv/opensbi.git -b v0.9
|
/qemu/.gitlab-ci.d/cirrus/ |
H A D | build.yml | 26 - git clone --depth 100 "$CI_REPOSITORY_URL" . 27 - git fetch origin "$CI_COMMIT_REF_NAME" 28 - git reset --hard "$CI_COMMIT_SHA"
|