| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/colord/colord/ |
| H A D | 0001-Run-native-cd_idt8-cd_create_profile.patch | 2 From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> 5 MIME-Version: 1.0 6 Content-Type: text/plain; charset=UTF-8 7 Content-Transfer-Encoding: 8bit 9 Upstream-Status: Inappropriate [OE specific] 11 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> 12 --- 13 data/cmf/meson.build | 2 +- 14 data/illuminant/meson.build | 2 +- 15 data/profiles/meson.build | 2 +- [all …]
|
| /openbmc/qemu/tests/docker/dockerfiles/ |
| H A D | emsdk-wasm32-cross.docker | 3 ARG EMSDK_VERSION_QEMU=3.1.50 4 ARG ZLIB_VERSION=1.3.1 5 ARG GLIB_MINOR_VERSION=2.84 6 ARG GLIB_VERSION=${GLIB_MINOR_VERSION}.0 7 ARG PIXMAN_VERSION=0.44.2 8 ARG FFI_VERSION=v3.4.7 9 ARG MESON_VERSION=1.5.0 11 FROM emscripten/emsdk:$EMSDK_VERSION_QEMU AS build-base 12 ARG MESON_VERSION 17 ENV CFLAGS="-O3 -pthread -DWASM_BIGINT" [all …]
|
| H A D | debian-toolchain.docker | 2 # Docker toolchain cross-compiler 4 # This dockerfile is used for building a cross-compiler toolchain. 5 # The script for building the toolchain is supplied via extra-files. 7 FROM docker.io/library/debian:11-slim 9 # Install build utilities for building gcc and glibc. 10 # ??? The build-dep isn't working, missing a number of 11 # minimal build dependiencies, e.g. libmpc. 13 RUN sed 's/^deb /deb-src /' </etc/apt/sources.list >/etc/apt/sources.list.d/deb-src.list 16 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \ 18 apt install -y --no-install-recommends \ [all …]
|
| H A D | debian-loongarch-cross.docker | 2 # Docker cross-compiler target 5 # https://github.com/loongson/build-tools/releases 7 FROM docker.io/library/debian:11-slim 9 # Duplicate deb line as deb-src 10 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list 13 apt-get update && \ 14 apt-get install -y eatmydata && \ 15 eatmydata apt-get dist-upgrade -y && \ 16 apt build-dep -yy qemu 18 RUN apt-get update && \ [all …]
|
| H A D | debian-hexagon-cross.docker | 2 # Docker Hexagon cross-compiler target 5 # needs to be able to build QEMU itself in CI we include its 6 # build-deps. 8 FROM docker.io/library/debian:11-slim 10 # Duplicate deb line as deb-src 11 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list 12 RUN apt-get update && \ 13 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \ 15 # Install common build utilities 16 apt-get install -y --no-install-recommends \ [all …]
|
| H A D | debian-legacy-test-cross.docker | 1 # Docker legacy cross-compiler target (tests and minimal qemu) 6 # libc6.1-dev-alpha-cross: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054412 7 # sh4-linux-user: binaries don't run with bookworm compiler 9 # As we are targeting check-tcg here we only need minimal qemu 12 FROM docker.io/library/debian:11-slim 14 # Duplicate deb line as deb-src 15 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list 18 apt-get update && \ 19 apt-get install -y eatmydata && \ 20 eatmydata apt-get dist-upgrade -y && \ [all …]
|
| H A D | debian-tricore-cross.docker | 2 # Docker TriCore cross-compiler target 8 # Copyright (c) 2018 Philippe Mathieu-Daudé 10 # SPDX-License-Identifier: GPL-2.0-or-later 12 FROM docker.io/library/debian:11-slim 15 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \ 16 DEBIAN_FRONTEND=noninteractive eatmydata apt install -yy \ 19 ca-certificates \ 26 libglib2.0-dev \ 27 libpixman-1-dev \ 30 ninja-build \ [all …]
|
| H A D | debian-all-test-cross.docker | 2 # Docker all cross-compiler target (tests only) 5 # build environments which can cross build QEMU this just installs the 7 # to build and run linux-user tests on GitLab 9 FROM docker.io/library/debian:12-slim 11 # Duplicate deb line as deb-src 12 RUN sed -in "s/Types: deb/Types: deb deb-src/g" /etc/apt/sources.list.d/debian.sources 15 apt-get update && \ 16 apt-get install -y eatmydata && \ 17 eatmydata apt-get dist-upgrade -y && \ 18 apt build-dep -yy --arch-only qemu [all …]
|
| H A D | debian-xtensa-cross.docker | 2 # Docker cross-compiler target 6 # https://github.com/foss-xtensa/toolchain/releases 8 FROM docker.io/library/debian:11-slim 10 RUN apt-get update && \ 11 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \ 13 apt-get install -y --no-install-recommends \ 14 build-essential \ 15 ca-certificates \ 19 python3-minimal && \ 20 dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show > /packages.txt [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gimp/gimp/gimp/ |
| H A D | 0002-meson.build-reproducibility-fix.patch | 2 From: Markus Volk <f_l_k@t-online.de> 4 Subject: [PATCH] meson.build: reproducibility fix 6 Signed-off-by: Markus Volk <f_l_k@t-online.de> 8 Upstream-Status: Inappropriate [oe-specific] 9 --- 10 meson.build | 28 ++++++++++++++-------------- 11 1 file changed, 14 insertions(+), 14 deletions(-) 13 diff --git a/meson.build b/meson.build 15 --- a/meson.build 16 +++ b/meson.build [all …]
|
| /openbmc/openbmc/poky/documentation/tools/ |
| H A D | build-docs-container | 2 # -*- vim: set expandtab tabstop=2 shiftwidth=2: 4 # Build a container ready to build the documentation be reading the dependencies 6 # start a documentation build in this container. 10 # ./documentation/tools/build-docs-container <image> [<make target>] 14 # ./documentation/tools/build-docs-container ubuntu:24.04 html 16 # Will build the docs in an Ubuntu 24.04 container in html. 21 set -eu -o pipefail 23 SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) 24 CONTAINERCMD=${CONTAINERCMD:-docker} 30 echo "$0 -- script to build documentation from within a container [all …]
|
| /openbmc/qemu/scripts/tracetool/ |
| H A D | __init__.py | 1 # -*- coding: utf-8 -*- 4 Machinery for generating tracing-related intermediate files. 8 __copyright__ = "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>" 114 ---------- 119 for arg in args: 120 if isinstance(arg, Arguments): 121 self._args.extend(arg._args) 123 self._args.append(arg) 130 def build(arg_str): member in Arguments 131 """Build and Arguments instance from an argument string. [all …]
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | control.py | 1 # SPDX-License-Identifier: GPL-2.0+ 33 count = (count + options.step - 1) / options.step 57 builder: The builder that will be used to build the commits 70 print 'Build directory: %s' % builder.base_dir 77 for arg in why_selected: 78 if arg != 'all': 79 print arg, ': %d boards' % len(why_selected[arg]) 81 print ' %s' % ' '.join(why_selected[arg]) 82 print ('Total boards to build for each commit: %d\n' % 92 (which is assumed to hold the U-Boot source) we may end up deleting the [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/rust/files/ |
| H A D | Zdual-proc-macros-additional-check.patch | 3 Upstream-Status: Backport [https://github.com/rust-lang/rust/commit/139d6ba054a1a4cc5fe64981ad46fd5… 5 Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> 6 --- 7 diff --git a/src/bootstrap/src/core/builder/cargo.rs b/src/bootstrap/src/core/builder/cargo.rs 9 --- a/src/bootstrap/src/core/builder/cargo.rs 11 @@ -646,7 +646,10 @@ impl Builder<'_> { 12 // Build proc macros both for the host and the target unless proc-macros are not 15 - let error = command(self.rustc(compiler)) 20 .arg("--target") 21 .arg(target.rustc_target_arg()) [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0002-add-fallback-parse_printf_format-implementation.patch | 6 Upstream-Status: Inappropriate [musl specific] 8 Signed-off-by: Emil Renner Berthing <systemd@esmil.dk> 9 Signed-off-by: Khem Raj <raj.khem@gmail.com> 10 Signed-off-by: Chen Qi <Qi.Chen@windriver.com> 12 Signed-off-by: Scott Murray <scott.murray@konsulko.com> 13 --- 14 meson.build | 1 + 15 src/basic/meson.build | 5 + 16 src/basic/parse-printf-format.c | 273 +++++++++++++++++++++++ 17 src/basic/parse-printf-format.h | 57 +++++ [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/ |
| H A D | 0004-add-fallback-parse_printf_format-implementation.patch | 6 Upstream-Status: Inappropriate [musl specific] 8 Signed-off-by: Emil Renner Berthing <systemd@esmil.dk> 9 Signed-off-by: Khem Raj <raj.khem@gmail.com> 10 Signed-off-by: Chen Qi <Qi.Chen@windriver.com> 12 Signed-off-by: Scott Murray <scott.murray@konsulko.com> 13 --- 14 meson.build | 1 + 15 src/basic/meson.build | 5 + 16 src/basic/parse-printf-format.c | 273 +++++++++++++++++++++++ 17 src/basic/parse-printf-format.h | 57 +++++ [all …]
|
| /openbmc/docs/testing/ |
| H A D | run-test-docker.md | 6 ## Build Docker Image 18 3. Clone openbmc-build-scripts repository. 20 `git clone https://github.com/openbmc/openbmc-build-scripts` 22 4. Change directory to openbmc-build-scripts. 24 `cd openbmc-build-scripts` 26 5. Build the Docker image required to execute the robot tests (it may take close 28 "openbmc/ubuntu-robot-qemu". You can check images using "docker images" 31 `./scripts/build-qemu-robot-docker.sh` 34 the build command (use proper IP and PORT values.) 37 --build-arg http_proxy=<IP>:<PORT> --build-arg https_proxy=<IP>:<PORT> [all …]
|
| /openbmc/u-boot/tools/binman/ |
| H A D | cmdline.py | 1 # SPDX-License-Identifier: GPL-2.0+ 5 # Command-line parser for binman 11 """Parse the binman command-line arguments 16 Tuple (options, args) with the command-line options and arugments. 21 parser.add_option('-a', '--entry-arg', type='string', action='append', 22 help='Set argument value arg=value') 23 parser.add_option('-b', '--board', type='string', 24 help='Board name to build') 25 parser.add_option('-B', '--build-dir', type='string', default='b', 26 help='Directory containing the build output') [all …]
|
| /openbmc/openbmc-build-scripts/scripts/ |
| H A D | build-qemu-robot-docker.sh | 1 #!/bin/bash -xe 3 # Build the required docker image to run QEMU and Robot test cases 16 # default is openbmc/ubuntu-robot-qemu 17 # param2: <optional, the distro to build a docker image against> 19 set -uo pipefail 21 http_proxy=${http_proxy:-} 23 DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-robot-qemu"} 24 DISTRO=${2:-"ubuntu:plucky"} 25 UBUNTU_MIRROR=${UBUNTU_MIRROR:-""} 26 PIP_MIRROR=${PIP_MIRROR:-""} [all …]
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | buildall-qemu | 4 # SPDX-License-Identifier: GPL-2.0-only 6 # buildall-qemu: a tool for automating build testing of recipes 7 # TODO: Add support for selecting which qemu architectures to build 15 …echo "Executes a build of a given target for selected LIBCs. With no options, default to both libc… 17 echo "-l, --libc Specify one of \"glibc\" or \"musl\"" 23 # Get path to oe-core directory. Since oe-init-build-env prepends $PATH with 25 SCRIPTS_PATH="$(echo "$PATH" | cut -d ":" -f 1)" 29 …ET_LIST=$(find "$OE_CORE_PATH"/meta/conf/machine -maxdepth 1 -type f | grep qemu | sed 's|.*/||' |… 32 if [ -n "$2" ] 41 START_TIME=$(date "+%Y-%m-%d_%H:%M:%S") [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/ |
| H A D | 0034-llvm-config-remove-LLVM_LDFLAGS-from-ldflags-output.patch | 4 Subject: [PATCH] llvm-config: remove LLVM_LDFLAGS from --ldflags output 7 depend on exact build dir and as such be inappropriate to binaries 8 shared through sstate-cache. It is not possible to override this 9 behaviour in llvm-config since crossscripts are not being used for 10 native builds. As a OE-specific modification ignore LLVM_LDFLAGS for 13 Upstream-Status: Inappropriate [OE-Specific] 14 Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> 15 Signed-off-by: Khem Raj <raj.khem@gmail.com> 16 --- 17 llvm/tools/llvm-config/llvm-config.cpp | 2 +- [all …]
|
| /openbmc/qemu/.gitlab-ci.d/ |
| H A D | container-template.yml | 6 - docker:dind 8 - export TAG="$CI_REGISTRY_IMAGE/qemu/$NAME:$QEMU_CI_CONTAINER_TAG" 10 - export COMMON_TAG="$CI_REGISTRY/qemu-project/qemu/qemu/$NAME:latest" 11 - docker login $CI_REGISTRY -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" 12 - until docker info; do sleep 1; done 14 - echo "TAG:$TAG" 15 - echo "COMMON_TAG:$COMMON_TAG" 16 - docker build --tag "$TAG" --cache-from "$TAG" --cache-from "$COMMON_TAG" 17 --build-arg BUILDKIT_INLINE_CACHE=1 18 -f "tests/docker/dockerfiles/$NAME.docker" "." [all …]
|
| /openbmc/openbmc/meta-raspberrypi/.github/workflows/docker-images/yocto-builder/ |
| H A D | Dockerfile | 1 # SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com> 3 # SPDX-License-Identifier: MIT 7 ARG DEBIAN_FRONTEND="noninteractive" 8 RUN apt-get update -qq 9 RUN apt-get install -y eatmydata 11 # Yocto/OE build host dependencies 15 RUN eatmydata apt-get install -qq -y \ 16 build-essential chrpath cpio debianutils diffstat file gawk gcc \ 17 git iputils-ping libacl1 liblz4-tool locales python3 python3-git \ 18 python3-jinja2 python3-pexpect python3-pip python3-subunit socat \ [all …]
|
| /openbmc/qemu/tests/qtest/ |
| H A D | qos-test.c | 21 #include "libqtest-single.h" 25 #include "qapi/qobject-input-visitor.h" 26 #include "qapi/qapi-visit-machine.h" 27 #include "qapi/qapi-visit-qom.h" 28 #include "libqos/libqos-malloc.h" 40 * This function firstly starts QEMU with "-machine none" option, 59 qtest_start("-machine none"); in qos_set_machines_devices_available() 60 response = qmp("{ 'execute': 'query-machines' }"); in qos_set_machines_devices_available() 74 response = qmp("{'execute': 'qom-list-types'," in qos_set_machines_devices_available() 135 * run_one_test(): given an array of nodes @arg, [all …]
|
| /openbmc/qemu/tests/docker/ |
| H A D | Makefile.include | 3 .PHONY: docker docker-help docker-test docker-clean docker-image docker-qemu-src 9 HOST_ARCH = $(shell uname -m) 10 USER = $(if $(NOUSER),,$(shell id -un)) 11 UID = $(if $(NOUSER),,$(shell id -u)) 15 DOCKER_DEFAULT_REGISTRY := registry.gitlab.com/qemu-project/qemu 19 RUNC ?= $(if $(shell command -v docker), docker, podman) 20 DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py --engine $(RUNC) 22 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$) 23 DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME) 29 $(call quiet-command, cp "$(SRC_ARCHIVE)" $@/qemu.tar, \ [all …]
|