/openbmc/qemu/ |
H A D | .gitmodules | 1 [submodule "roms/seabios"] 3 url = https://gitlab.com/qemu-project/seabios.git/ 4 [submodule "roms/SLOF"] 6 url = https://gitlab.com/qemu-project/SLOF.git 7 [submodule "roms/ipxe"] 9 url = https://gitlab.com/qemu-project/ipxe.git 10 [submodule "roms/openbios"] 12 url = https://gitlab.com/qemu-project/openbios.git 13 [submodule "roms/qemu-palcode"] 14 path = roms/qemu-palcode [all …]
|
H A D | .gitignore | 7 .stgit-* 8 .git-submodule-status 9 .clang-format
|
/openbmc/qemu/scripts/ |
H A D | git-submodule.sh | 4 # the COPYING file in the top-level directory. 6 substat=".git-submodule-status" 12 test -z "$maybe_modules" && exit 0 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' 25 test -z "$no_git_error" 31 echo "Unable to automatically checkout GIT submodules '$modules'." [all …]
|
H A D | make-release | 1 #!/bin/bash -e 11 # See the COPYING file in the top-level directory. 13 if [ $# -ne 2 ]; then 20 SUBPROJECTS="libvfio-user keycodemapdb berkeley-softfloat-3 21 berkeley-testfloat-3 arbitrary-int-1-rs bilge-0.2-rs 22 bilge-impl-0.2-rs either-1-rs itertools-0.11-rs proc-macro2-1-rs 23 proc-macro-error-1-rs proc-macro-error-attr-1-rs quote-1-rs 24 syn-2-rs unicode-ident-1-rs" 28 destination=qemu-${version} 30 git clone --single-branch -b "v${version}" -c advice.detachedHead=false \ [all …]
|
H A D | archive-source.sh | 10 # the COPYING file in the top-level directory. 17 if test $# -lt 1; then 22 sub_tdir=$(mktemp -d "${tar_file%.tar}.sub.XXXXXXXX") 23 sub_file="${sub_tdir}/submodule.tar" 29 subprojects="keycodemapdb libvfio-user berkeley-softfloat-3 30 berkeley-testfloat-3 arbitrary-int-1-rs bilge-0.2-rs 31 bilge-impl-0.2-rs either-1-rs itertools-0.11-rs proc-macro2-1-rs 32 proc-macro-error-1-rs proc-macro-error-attr-1-rs quote-1-rs 33 syn-2-rs unicode-ident-1-rs" 38 rm -rf "$sub_tdir" [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | gitsm.py | 2 BitBake 'Fetch' git submodules implementation 4 Inherits from and extends the Git fetcher to retrieve submodules of a git repository 7 SRC_URI = "gitsm://<see Git fetcher for syntax>" 9 See the Git fetcher, git://, for usage documentation. 11 NOTE: Switching a SRC_URI from "git://" to "gitsm://" requires a clean of your recipe. 17 # SPDX-License-Identifier: GPL-2.0-only 25 from bb.fetch2.git import Git 30 class GitSM(Git): 33 Check to see if a given url can be fetched with git. 53 if line.startswith('[submodule'): [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | externalsrc.py | 4 # SPDX-License-Identifier: MIT 16 … # we should be actually checking do_compile[file-checksums] but oeqa currently does not support it 19 test_recipe = "git-submodule-test" 20 git_url = "git://git.yoctoproject.org/git-submodule-test" 26 EXTERNALSRC:pn-%s = "%s" 30 # test with git without submodules 31 runCmd('git clone %s %s' % (git_url, externalsrc_dir)) 37 # test with git with submodules 38 runCmd('git checkout .gitmodules', cwd=externalsrc_dir) 39 runCmd('git submodule update --init --recursive', cwd=externalsrc_dir) [all …]
|
H A D | intercept.py | 4 # SPDX-License-Identifier: MIT 13 Git binaries with CVE-2022-24765 fixed will refuse to operate on a 15 do_install task as that runs inside pseudo, so the git repository is 16 owned by the build user but git is running as (fake)root. 20 bitbake("git-submodule-test -c test_git_as_user") 21 bitbake("git-submodule-test -c test_git_as_root")
|
H A D | archiver.py | 4 # SPDX-License-Identifier: MIT 20 Product: oe-core 25 include_recipe = 'selftest-ed' 34 bitbake('-c clean %s %s' % (include_recipe, exclude_recipe)) 35 bitbake("-c deploy_archives %s %s" % (include_recipe, exclude_recipe)) 41 included_present = len(glob.glob(src_path + '/%s-*/*' % include_recipe)) 45 excluded_present = len(glob.glob(src_path + '/%s-*/*' % exclude_recipe)) 53 Product: oe-core 57 target_recipe = 'selftest-ed' 58 native_recipe = 'selftest-ed-native' [all …]
|
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
H A D | bitbake-user-manual-fetching.rst | 1 .. SPDX-License-Identifier: CC-BY-2.5 37 space-separated list of URLs from the :term:`SRC_URI` 62 - *Pre-mirror Sites:* BitBake first uses pre-mirrors to try and find 66 - *Source URI:* If pre-mirrors fail, BitBake uses the original URL (e.g 69 - *Mirror Sites:* If fetch failures occur, BitBake next uses mirror 72 For each URL passed to the fetcher, the fetcher calls the submodule that 77 https://git.yoctoproject.org/git/poky;protocol=git 78 git://git.yoctoproject.org/git/poky;protocol=http 81 understand "git". Therefore, the latter case is the correct form since the Git 89 git://.*/.\* http://somemirror.org/sources/ \ [all …]
|
/openbmc/qemu/pc-bios/s390-ccw/ |
H A D | Makefile | 1 all: build-all 5 include config-host.mak 6 CFLAGS = -O2 -g -I $(SRC_PATH)/../../include/hw/s390x/ipl 8 MAKEFLAGS += -rR 16 quiet-@ = $(if $(V),,@$(if $1,printf "%s\n" "$(TARGET_PREFIX)$1" && )) 17 quiet-command = $(call quiet-@,$2 $@)$1 20 set-vpath = $(if $1,$(foreach PATTERN,$(VPATH_SUFFIXES),$(eval vpath $(PATTERN) $1))) 21 $(call set-vpath, $(SRC_PATH)) 24 QEMU_DGFLAGS = -MMD -MP -MT $@ -MF $(@D)/$(*F).d 27 $(call quiet-command,$(CC) $(EXTRA_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) \ [all …]
|
/openbmc/openbmc/poky/meta-selftest/recipes-test/git-submodule-test/ |
H A D | git-submodule-test.bb | 1 SUMMARY = "Test recipe for fetching git submodules" 2 HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/git-submodule-test/" 10 SRC_URI = "gitsm://git.yoctoproject.org/git-submodule-test;branch=master" 13 S = "${WORKDIR}/git" 17 git status 23 git status 25 do_test_git_as_root[depends] += "virtual/fakeroot-native:do_populate_sysroot"
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | fetch.py | 6 # SPDX-License-Identifier: GPL-2.0-only 161 "cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg": { 162 … 'uri': 'cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg', 172 ('tag', 'V0-99-81'), 222 "git:///path/example.git": { 223 'uri': 'git:///path/example.git', 224 'scheme': 'git', 228 'path': '/path/example.git', 237 "git:path/example.git": { 238 'uri': 'git:path/example.git', [all …]
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | __init__.py | 3 # Development tool - utility functions for plugins 7 # SPDX-License-Identifier: GPL-2.0-only 46 cmd = 'script -e -q -c "%s" /dev/null' % cmd 61 reader = codecs.getreader('utf-8')(process.stdout) 86 …logger.error('pseudo executable %s could not be found - have you run a build yet? pseudo-native sh… 181 logger.info('Using separate build directory since --no-same-dir specified') 184 logger.info('Using source tree as build directory since --same-dir specified') 185 elif bb.data.inherits_class('autotools-brokensep', d): 186 … logger.info('Using source tree as build directory since recipe inherits autotools-brokensep') 193 def setup_git_repo(repodir, version, devbranch, basetag='devtool-base', d=None): [all …]
|
/openbmc/qemu/.gitlab-ci.d/ |
H A D | buildtest-template.yml | 7 - ccache 11 - source scripts/ci/gitlab-ci-section 12 - section_start setup "Pre-script setup" 13 - JOBS=$(expr $(nproc) + 1) 14 - cat /packages.txt 15 - section_end setup 17 - export CCACHE_BASEDIR="$(pwd)" 18 - export CCACHE_DIR="$CCACHE_BASEDIR/ccache" 19 - export CCACHE_MAXSIZE="500M" 20 - export PATH="$CCACHE_WRAPPERSDIR:$PATH" [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/ |
H A D | 0013-remove-clean-script.patch | 3 Date: Wed, 10 Dec 2014 10:26:33 -0800 6 This script try to call git submodule, since we are downloading 7 the tarball it seems in-correct to do this. 9 Upstream-Status: Inappropriate [OE-Specific] 10 Signed-off-by: Saul Wold <sgw@linux.intel.com> 11 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> 12 --- 13 efi/Makefile | 1 - 14 1 file changed, 1 deletion(-) 16 diff --git a/efi/Makefile b/efi/Makefile [all …]
|
/openbmc/qemu/docs/specs/ |
H A D | spdm.rst | 18 SPDM-Utils 19 ---------- 23 SPDM-Utils is a Linux applications to manage, test and develop devices 27 To use SPDM-Utils you will need to do the following steps. Details are included 28 in the SPDM-Utils README. 34 spdm-emu 35 -------- 40 .. code-block:: shell 42 $ cd spdm-emu 43 $ git submodule init; git submodule update --recursive [all …]
|
/openbmc/qemu/tests/lcitool/ |
H A D | Makefile.include | 10 @echo ' lcitool-refresh: Re-generate all build environment manifests.' 13 lcitool-help: lcitool 15 lcitool-refresh: 16 $(call quiet-command, cd $(SRC_PATH) && git submodule update --init tests/lcitool/libvirt-ci) 17 $(call quiet-command, $(PYTHON) $(LCITOOL_REFRESH))
|
/openbmc/openbmc/poky/documentation/migration-guides/ |
H A D | release-notes-4.0.5.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 3 Release notes for Yocto-4.0.5 (Kirkstone) 4 ----------------------------------------- 6 Security Fixes in Yocto-4.0.5 9 - qemu: fix :cve_nist:`2021-3750`, :cve_nist:`2021-3611` and :cve_nist:`2022-2962` 10 - binutils : fix :cve_nist:`2022-38126`, :cve_nist:`2022-38127` and :cve_nist:`2022-38128` 11 - tff: fix :cve_nist:`2022-2867`, :cve_nist:`2022-2868` and :cve_nist:`2022-2869` 12 - inetutils: fix :cve_nist:`2022-39028` 13 - go: fix :cve_nist:`2022-27664` 15 Fixes in Yocto-4.0.5 [all …]
|
H A D | release-notes-4.0.6.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 3 Release notes for Yocto-4.0.6 (Kirkstone) 4 ----------------------------------------- 6 Security Fixes in Yocto-4.0.6 9 - bash: Fix :cve_nist:`2022-3715` 10 - curl: Fix :cve_nist:`2022-32221`, :cve_nist:`2022-42915` and :cve_nist:`2022-42916` 11 - dbus: Fix :cve_nist:`2022-42010`, :cve_nist:`2022-42011` and :cve_nist:`2022-42012` 12 - dropbear: Fix :cve_nist:`2021-36369` 13 - ffmpeg: Fix :cve_nist:`2022-3964`, :cve_nist:`2022-3965` 14 - go: Fix :cve_nist:`2022-2880` [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-devtools/libcoap/ |
H A D | libcoap_4.3.4.bb | 2 DESCRIPTION = "libcoap implements a lightweight application-protocol for \ 7 LICENSE = "BSD-2-Clause & BSD-3-Clause" 10 SRC_URI = "git://github.com/obgm/libcoap.git;branch=main;protocol=https \ 11 file://run-ptest \ 12 file://CVE-2024-0962.patch \ 16 S = "${WORKDIR}/git" 20 DEPENDS += "ctags-native" 26 PACKAGECONFIG[async] = "--enable-async,--disable-async" 27 PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,,openssl mbedtls" 28 …G[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,a… [all …]
|
/openbmc/linux/Documentation/bpf/ |
H A D | bpf_devel_QA.rst | 10 Documentation/process/submitting-patches.rst. This document only describes 21 -------------------------------------------- 39 typically be identified through the kernel's git tree. 48 ------------------------------------------------------------------------ 49 A: BPF CI is GitHub based and hosted at https://github.com/kernel-patches/bpf. 55 - Create a fork of the aforementioned repository in your own account (one time 58 - Clone the fork locally, check out a new branch tracking either the bpf-next 59 or bpf branch, and apply your to-be-tested patches on top of it 61 - Push the local branch to your fork and create a pull request against 62 kernel-patches/bpf's bpf-next_base or bpf_base branch, respectively [all …]
|
/openbmc/openbmc/poky/meta/lib/bblayers/ |
H A D | makesetup.py | 4 # SPDX-License-Identifier: GPL-2.0-only 15 logger = logging.getLogger('bitbake-layers') 33 # This is slightly brittle: git does not offer a way to tell whether 34 # a given repo dir is a submodule checkout, so we need to rely on .git 37 return os.path.isfile(os.path.join(repo_path,".git")) 51 …e = "Layer {name} in {path} has uncommitted modifications or is not in a git repository.".format(n… 59 repos[repo_path] = {'path':os.path.basename(repo_path),'git-remote':{ 85 …parser_setup_layers = self.add_command(sp, 'create-layers-setup', self.do_make_setup, parserecipes… 88 parser_setup_layers.add_argument('--output-prefix', '-o', 89 … help='File name prefix for the output files, if the default (setup-layers) is undesirable.') [all …]
|
/openbmc/openbmc-build-scripts/ |
H A D | qemu-build.sh | 9 # In Jenkins configure the git SCM 'Additional Behaviours', 'check-out to a sub 14 # git clone https://github.com/qemu/qemu 15 # WORKSPACE=$PWD/qemu ~/openbmc-build-scripts/qemu-build.sh 30 #set -x 33 http_proxy=${http_proxy:-} 35 if [ -z ${WORKSPACE+x} ]; then 40 docker_reg=${DOCKER_REG:-"public.ecr.aws/ubuntu"} 43 img_name=qemu-build 49 if [[ -n "${http_proxy}" ]]; then 50 …ho \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy" [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | oe-setup-layers | 5 # SPDX-License-Identifier: MIT 8 # This file was copied from poky(or oe-core)/scripts/oe-setup-layers by running 10 # bitbake-layers create-layers-setup destdir 12 # It is recommended that you do not modify this file directly, but rather re-run the above command … 24 …curr_toplevel = subprocess.check_output("git -C %s rev-parse --show-toplevel" % repodir, shell=Tru… 25 if curr_toplevel.strip().decode("utf-8") == repodir: 33 …curr_rev = subprocess.check_output("git -C %s rev-parse HEAD" % repodir, shell=True, stderr=subpro… 34 if curr_rev.strip().decode("utf-8") == rev: 42 …curr_uri = subprocess.check_output("git -C %s remote get-url %s" % (repodir, remote), shell=True, … 43 if curr_uri.strip().decode("utf-8") == uri: [all …]
|