| /openbmc/qemu/tests/docker/dockerfiles/ |
| H A D | debian-riscv64-cross.docker | 1 # THIS FILE WAS AUTO-GENERATED 3 # $ lcitool dockerfile --layers all --cross-arch riscv64 debian-13 qemu-minimal 5 # https://gitlab.com/libvirt/libvirt-ci 7 FROM docker.io/library/debian:trixie-slim 10 apt-get update && \ 11 apt-get install -y eatmydata && \ 12 eatmydata apt-get dist-upgrade -y && \ 13 eatmydata apt-get install --no-install-recommends -y \ 17 ca-certificates \ 23 libglib2.0-dev \ [all …]
|
| H A D | debian-all-test-cross.docker | 2 # Docker all cross-compiler target (tests only) 4 # While the normal cross builds take care to setup proper multiarch 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 && \ [all …]
|
| /openbmc/qemu/.gitlab-ci.d/ |
| H A D | crossbuilds.yml | 2 - local: '/.gitlab-ci.d/crossbuild-template.yml' 4 cross-armhf-user: 7 job: armhf-debian-cross-container 9 IMAGE: debian-armhf-cross 11 cross-arm64-system: 14 job: arm64-debian-cross-container 16 IMAGE: debian-arm64-cross 18 cross-arm64-user: 21 job: arm64-debian-cross-container 23 IMAGE: debian-arm64-cross [all …]
|
| H A D | container-cross.yml | 1 amd64-debian-cross-container: 5 NAME: debian-amd64-cross 7 amd64-debian-user-cross-container: 11 NAME: debian-all-test-cross 13 amd64-debian-legacy-cross-container: 17 NAME: debian-legacy-test-cross 19 arm64-debian-cross-container: 23 NAME: debian-arm64-cross 25 armhf-debian-cross-container: 29 NAME: debian-armhf-cross [all …]
|
| H A D | buildtest.yml | 2 - local: '/.gitlab-ci.d/buildtest-template.yml' 4 build-system-alpine: 6 - .native_build_job_template 7 - .native_build_artifact_template 9 - job: amd64-alpine-container 12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu 13 MAKE_CHECK_ARGS: check-build 14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog 16 check-system-alpine: 19 - job: build-system-alpine [all …]
|
| /openbmc/qemu/tests/lcitool/ |
| H A D | refresh | 3 # Re-generate container recipes 7 # https://gitlab.com/libvirt/libvirt-ci 13 # the top-level directory. 28 lcitool_path = Path(self_dir, "libvirt-ci", "bin", "lcitool") 30 lcitool_cmd = [lcitool_path, "--data-dir", self_dir] 56 # Optional user setting, this will always be the last thing added 59 "# As a final step configure the user (if env is defined)", 60 "ARG USER", 62 "RUN if [ \"${USER}\" ]; then \\", 63 " id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi\n" [all …]
|
| /openbmc/qemu/ |
| H A D | configure | 14 source_path=$(cd "$(dirname -- "$0")"; pwd) 16 if test "$PWD" -ef "$source_path" 20 MARKER=build/auto-created-by-configure 22 if test -e build 24 if test -f $MARKER 26 rm -rf build 36 echo "your source directory, or try doing an out-of-tree build." 41 # This file is auto-generated by configure to support in-source tree 46 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS) 48 test -e build/auto-created-by-configure ; \ [all …]
|
| H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 54 supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64', 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), [all …]
|
| H A D | MAINTAINERS | 10 consult qemu-devel and not any specific individual privately. 23 W: Web-page with status/info 59 ------------------------------ 63 L: qemu-devel@nongnu.org 72 R: Philippe Mathieu-Daudé <philmd@linaro.org> 75 F: docs/devel/build-environment.rst 76 F: docs/devel/code-of-conduct.rst 78 F: docs/devel/conflict-resolution.rst 80 F: docs/devel/submitting-a-patch.rst 81 F: docs/devel/submitting-a-pull-request.rst [all …]
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | siteinfo.bbclass | 4 # SPDX-License-Identifier: MIT 13 # where 'target' == "<arch>-<os>" 16 # * target: Returns the target name ("<arch>-<os>") 26 …"allarch": "endian-little bit-32", # bogus, but better than special-casing the checks below for al… 27 "aarch64": "endian-little bit-64 arm-common arm-64", 28 "aarch64_be": "endian-big bit-64 arm-common arm-64", 29 "arc": "endian-little bit-32 arc-common", 30 "arceb": "endian-big bit-32 arc-common", 31 "arm": "endian-little bit-32 arm-common arm-32", 32 "armeb": "endian-big bit-32 arm-common arm-32", [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/gcc/ |
| H A D | gcc-runtime.inc | 1 require gcc-configure-common.inc 5 # Over-ride the LICENSE set by gcc-${PV}.inc to remove "& GPLv3" 6 # All gcc-runtime packages are now covered by the runtime exception. 7 LICENSE = "GPL-3.0-with-GCC-exception" 9 CXXFLAGS:remove = "-fvisibility-inlines-hidden" 12 --with-gxx-include-dir=${includedir}/c++/${BINV} \ 13 --with-sysroot=/not/exist \ 14 --with-build-sysroot=${STAGING_DIR_TARGET} \ 17 EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu" 18 EXTRA_OECONF:append = " --cache-file=${B}/config.cache" [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/squid/ |
| H A D | squid_6.12.bb | 1 SUMMARY = "A fully-featured http proxy and web-cache daemon for Linux" 2 DESCRIPTION = "A fully-featured http proxy and web-cache daemon for Linux. \ 8 HOMEPAGE = "http://www.squid-cache.org" 10 LICENSE = "GPL-2.0-or-later" 15 SRC_URI = "http://www.squid-cache.org/Versions/v${MAJ_VER}/${BPN}-${PV}.tar.xz \ 16 file://Set-up-for-cross-compilation.patch \ 17 file://Skip-AC_RUN_IFELSE-tests.patch \ 18 file://squid-use-serial-tests-config-needed-by-ptest.patch \ 19 file://run-ptest \ 21 file://0002-squid-make-squid-conf-tests-run-on-target-device.patch \ [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/uim/ |
| H A D | uim_1.9.0.bb | 1 DESCRIPTION = "A multilingual user input method library" 3 LICENSE = "BSD-3-Clause & LGPL-2.0-or-later" 7 SRC_URI = "https://github.com/uim/uim/releases/download/${PV}/uim-${PV}.tar.bz2" 8 SRC_URI:append:class-target = "\ 9 file://uim-module-manager.patch \ 16 DEPENDS = "anthy fontconfig libxft libxt glib-2.0 ncurses intltool libedit" 17 DEPENDS:append:class-target = " intltool-native gtk+ gtk+3 uim-native" 20 RDEPENDS:uim-anthy = "anthy libanthy0" 21 RDEPENDS:uim-anthy:append:libc-glibc = " glibc-utils glibc-gconv-euc-jp" 25 COMPATIBLE_HOST:riscv64 = "null" [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/netdata/ |
| H A D | netdata_1.47.5.bb | 1 SUMMARY = "Real-time performance monitoring" 2 DESCRIPTION = "Netdata is high-fidelity infrastructure monitoring and troubleshooting. \ 3 Open-source, free, preconfigured, opinionated, and always real-time." 5 LICENSE = "GPL-3.0-only" 9 json-c \ 13 util-linux \ 18 https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BPN}-v${PV}.tar.gz \ 19 file://0002-Do-not-hardcode-systemd-unit-directories.patch \ 21 file://netdata-volatiles.conf \ 29 S = "${UNPACKDIR}/${BPN}-v${PV}" [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/qemu/ |
| H A D | qemu.inc | 7 LICENSE = "GPL-2.0-only & LGPL-2.1-only" 9 DEPENDS += "bison-native meson-native ninja-native" 11 RDEPENDS:${PN}-ptest = "bash" 13 require qemu-targets.inc 14 # https://gitlab.com/qemu-project/qemu/-/commit/81e2b198a8cb4ee5fdf108bd438f44b193ee3a36 means 15 # we need a full python3-native setup 16 inherit pkgconfig ptest update-rc.d systemd python3native 21 SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \ 23 file://run-ptest \ 24 file://fix-strerrorname_np.patch \ [all …]
|
| /openbmc/openbmc/poky/documentation/migration-guides/ |
| H A D | release-notes-5.0.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 4 --------------------------------- 9 - Linux kernel 6.6, gcc 13.2, glibc 2.39, LLVM 18.1, and over 300 other recipe upgrades 11 - New variables: 13 - :term:`CVE_DB_INCR_UPDATE_AGE_THRES`: Configure the maximum age of the 17 - :term:`RPMBUILD_EXTRA_PARAMS`: support extra user-defined fields without 20 - :term:`OPKG_MAKE_INDEX_EXTRA_PARAMS`: support extra parameters for 21 ``opkg-make-index``. 23 - :term:`EFI_UKI_PATH`, :term:`EFI_UKI_DIR`: define the location of UKI 26 - :term:`TARGET_DBGSRC_DIR`: specifies the target path to debug source files [all …]
|
| H A D | release-notes-3.4.1.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 4 ---------------------------------- 9 - :yocto_bugs:`bsps-hw.bsps-hw.Test_Seek_bar_and_volume_control manual test case failure </show_bug… 14 - glibc: Backport fix for :cve_nist:`2021-43396` 15 - vim: add patch number to :cve_nist:`2021-3778` patch 16 - vim: fix :cve_nist:`2021-3796`, :cve_nist:`2021-3872`, and :cve_nist:`2021-3875` 17 - squashfs-tools: follow-up fix for :cve_nist:`2021-41072` 18 - avahi: update CVE id fixed by local-ping.patch 19 - squashfs-tools: fix :cve_nist:`2021-41072` 20 - ffmpeg: fix :cve_nist:`2021-38114` [all …]
|
| H A D | release-notes-5.2.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 3 .. |yocto-codename| replace:: walnascar 4 .. |yocto-ver| replace:: 5.2 6 Release notes for |yocto-ver| (|yocto-codename|) 7 ------------------------------------------------ 9 New Features / Enhancements in |yocto-ver| 12 - Linux kernel 6.12, gcc 14.2, glibc 2.41, LLVM 19.1.7, and over 300 other 15 - Minimum Python version required on the host: 3.9. 17 - New variables: 19 - ``linux-firmware``: Add the :term:`FIRMWARE_COMPRESSION` variable which [all …]
|
| H A D | release-notes-4.0.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 4 --------------------------------- 11 - Linux kernel 5.15, glibc 2.35 and ~300 other recipe upgrades 13 - Reproducibility: this release fixes the reproducibility issues with 14 ``rust-llvm`` and ``golang``. Recipes in OpenEmbedded-Core are now fully 16 class has been merged into the :ref:`ref-classes-base` class. 18 - Network access is now disabled by default for tasks other than where it is expected to ensure bui… 20 - The Yocto Project now allows you to reuse the Shared State cache from 31 - The Python package build process is now based on `wheels <https://pythonwheels.com/>`__ 34 - New :ref:`ref-classes-overlayfs` and :ref:`ref-classes-overlayfs-etc` classes and [all …]
|
| /openbmc/qemu/docs/about/ |
| H A D | deprecated.rst | 21 for pre-existing VM deployments. They should be scheduled for updating to a 23 should exclusively use a non-deprecated machine type, with use of the most 24 recent version highly recommended. Non-versioned machine types follow the 31 -------------------------------------- 33 Short-form boolean options (since 6.0) 43 The replacement for the ``nodelay`` short-form boolean option is ``nodelay=on`` 50 command-line less readable, especially when the argument itself consist of a 51 name and a value, e.g. ``-plugin plugin_name,arg="arg_name=arg_value"``. 52 Therefore, the usage of ``arg`` is redundant. Single-word arguments are treated 53 as short-form boolean values, and passed to plugins as ``arg_name=on``. [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/ |
| H A D | clang_git.bb | 5 DESCRIPTION = "Clang is an LLVM based C/C++/Objective-C compiler, \ 10 clang-tidy are tools that automatically find bugs \ 17 require common-clang.inc 18 require common-source.inc 20 INHIBIT_DEFAULT_DEPS:class-native = "1" 22 LDFLAGS:append:class-target:riscv32 = " -Wl,--no-as-needed -latomic -Wl,--as-needed" 23 LDFLAGS:append:class-target:mips = " -Wl,--no-as-needed -latomic -Wl,--as-needed" 39 elif re.match('riscv64$', a): return 'RISCV' 52 PACKAGECONFIG_CLANG_COMMON = "build-id eh libedit rtti shared-libs libclang-python \ 53 …${@bb.utils.contains('TC_CXX_RUNTIME', 'llvm', 'compiler-rt libcplusplus libomp unwindlib', '', d)… [all …]
|
| /openbmc/ |
| D | opengrok1.0.log | 1 2025-11-28 03:01:16.028-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-11-28 03:01:16.106-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |
| D | opengrok2.0.log | 1 2025-11-27 03:01:06.579-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-11-27 03:01:06.653-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |