| /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 | 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 …]
|
| H A D | crossbuild-template.yml | 7 - ccache 12 - source scripts/ci/gitlab-ci-section 13 - section_start setup "Pre-script setup" 14 - JOBS=$(expr $(nproc) + 1) 15 - cat /packages.txt 16 - section_end setup 18 - export CCACHE_BASEDIR="$(pwd)" 19 - export CCACHE_DIR="$CCACHE_BASEDIR/ccache" 20 - export CCACHE_MAXSIZE="500M" 21 - export PATH="$CCACHE_WRAPPERSDIR:$PATH" [all …]
|
| /openbmc/qemu/tests/docker/dockerfiles/ |
| 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) 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 22 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 …]
|
| /openbmc/qemu/scripts/ |
| H A D | meson-buildoptions.sh | 1 # This file is generated by meson-buildoptions.py, do not edit! 3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co' 6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]' 7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE' 8 printf "%s\n" ' set block driver read-only whitelist (by default' 9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE' 11 printf "%s\n" ' set block driver read-write whitelist (by default' 12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 13 printf "%s\n" ' --datadir=VALUE Data file directory [share]' [all …]
|
| /openbmc/u-boot/cmd/ |
| H A D | otp_info.h | 7 #define OTP_REG_RESERVED -1 8 #define OTP_REG_VALUE -2 9 #define OTP_REG_VALID_BIT -3 33 { 0, 1, 0, "Disable Secure Boot" }, 35 { 1, 1, 0, "Disable boot from eMMC" }, 37 { 2, 1, 0, "Disable Boot from debug SPI" }, 40 { 3, 1, 1, "Disable ARM CM3" }, 62 { 16, 1, 1, "Disable ARM JTAG debug" }, 66 { 18, 1, 1, "Disable debug interfaces 0" }, 69 { 20, 1, 0, "Disable Pcie EHCI device" }, [all …]
|
| /openbmc/openbmc/meta-ibm/recipes-bsp/u-boot/u-boot-aspeed-sdk/p10bmc/ |
| H A D | ibm.json | 39 "Disable OTP Memory BIST Mode": true, 41 "User region ECC enable": true, 43 "Disable low security key": false, 46 "Disable Uart Message of ROM code": false, 49 "Disable patch code": false, 50 "Disable Boot from Uart": false, 53 "Write Protect: User region": true, 59 "Disable Auto Boot from UART or VUART": false, 64 "Disable Auto Boot from UART": false, 65 "Disable Auto Boot from VUART2 over PCIE": true, [all …]
|
| H A D | ips.json | 46 "Disable OTP Memory BIST Mode": true, 48 "User region ECC enable": true, 50 "Disable low security key": false, 53 "Disable Uart Message of ROM code": false, 56 "Disable patch code": false, 57 "Disable Boot from Uart": false, 60 "Write Protect: User region": true, 66 "Disable Auto Boot from UART or VUART": false, 71 "Disable Auto Boot from UART": false, 72 "Disable Auto Boot from VUART2 over PCIE": true, [all …]
|
| /openbmc/openbmc-tools/openbmctool/ |
| H A D | README.md | 12 - `-H`: The hostname or IP for the BMC 13 - `-U`: The username One of the password options: 14 - `-P`: The password, provided in-line 15 - `-A`: Prompt for a password 16 - `-E`: Take the password from envvar `OPENBMCTOOL_PASSWORD` 18 ## Enabling and Disabling Local BMC User Accounts 20 The local user accounts on the BMC, such as root, can be disabled, queried, and 21 re-enabled with the `local_users` sub-command. 23 Important: After disabling local users, an LDAP user will need to be used for 27 To view current local user account status: [all …]
|
| /openbmc/openbmc/poky/meta/recipes-graphics/xorg-app/ |
| H A D | xset_1.2.5.bb | 1 require xorg-app-common.inc 3 SUMMARY = "Utility for setting various user preference options of the display" 5 DESCRIPTION = "xset is a utility that is used to set various user \ 13 SRC_URI += "file://disable-xkb.patch" 19 CFLAGS += "-D_GNU_SOURCE" 20 EXTRA_OECONF = "--disable-xkb --without-fontcache"
|
| /openbmc/qemu/linux-user/ |
| H A D | semihost.c | 6 * Currently ARM and RISC-V are unique in having support for 7 * semihosting support in linux-user. So for now we implement the 8 * common console API but just for arm and risc-v linux-user. 10 * SPDX-License-Identifier: GPL-2.0-or-later 16 #include "user-internals.h" 20 * For linux-user we can safely block. However as we want to return as 21 * soon as a character is read we need to tweak the termio to disable 31 /* Disable line-buffering and echo */ in qemu_semihosting_console_read()
|
| /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/qemu/ |
| H A D | .travis.yml | 5 - gcc 9 # - OS name (currently only linux) 10 # - OS distribution (e.g. "jammy" for Linux) 11 # - Names and values of visible environment variables set in .travis.yml or Settings panel 19 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu" 23 …- secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1K… 30 - SRC_DIR=".." 31 - BUILD_DIR="build" 32 - BASE_CONFIG="--disable-docs --disable-tools" 33 - TEST_BUILD_CMD="" [all …]
|
| /openbmc/openbmc/meta-arm/meta-arm-systemready/recipes-test/arm-systemready-linux-distros/files/unattended-boot-conf/Debian/ |
| H A D | preseed.cfg | 4 d-i auto-install/enable boolean true 5 d-i debconf/priority select critical 8 d-i debian-installer/language string en 9 d-i debian-installer/country string GB 10 d-i debian-installer/locale string en_GB.UTF-8 11 d-i keyboard-configuration/xkb-keymap select us 14 d-i clock-setup/utc boolean true 15 d-i time/zone select Europe/London 18 d-i base-installer/install-recommends boolean false 20 # Set user and password [all …]
|
| /openbmc/qemu/tests/docker/ |
| H A D | test-static | 1 #!/bin/bash -e 3 # Compile QEMU user mode emulators as static binaries on Linux. 12 # the top-level directory. 19 --disable-system \ 20 --disable-tools \ 21 --disable-guest-agent \ 22 --disable-docs \ 23 --static
|
| /openbmc/openbmc/meta-ibm/recipes-phosphor/ipmi/phosphor-ipmi-net/ |
| H A D | first-boot-disable-ipmi-net.service | 2 Description=First Boot Disable IPMI Network 3 After=phosphor-ipmi-net@eth0.service 4 After=phosphor-ipmi-net@eth1.service 5 After=phosphor-ipmi-net@eth0.socket 6 After=phosphor-ipmi-net@eth1.socket 7 Before=srvcfg-manager.service 8 ConditionPathExists=!/var/lib/ipmi-net-disable-one-time 11 ExecStart=/bin/systemctl disable --no-reload --now \ 12 phosphor-ipmi-net@eth0.socket \ 13 phosphor-ipmi-net@eth0.service \ [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xdg-user-dirs/ |
| H A D | xdg-user-dirs_0.18.bb | 1 DESCRIPTION = "xdg-user-dirs is a tool to help manage user directories like the desktop folder and … 2 LICENSE = "GPL-2.0-only" 5 SRC_URI = "http://user-dirs.freedesktop.org/releases/${BPN}-${PV}.tar.gz" 10 EXTRA_OECONF = "--disable-documentation" 13 ${sysconfdir}/xdg/user-dirs.conf \ 14 ${sysconfdir}/xdg/user-dirs.defaults \
|
| /openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/wireplumber/ |
| H A D | wireplumber_0.5.10.bb | 9 DEPENDS = "glib-2.0 glib-2.0-native lua pipewire \ 10 ….utils.contains("DISTRO_FEATURES", "gobject-introspection-data", "python3-native python3-lxml-nati… 16 file://90-OE-disable-session-dbus-dependent-features.lua \ 21 inherit meson pkgconfig gobject-introspection systemd 26 # Enable system-lua to let wireplumber use OE's lua. 27 # Documentation needs python-sphinx, which is not in oe-core or meta-python2 for now. 28 # elogind is not (yet) available in OE, so disable support. 30 -Ddoc=disabled \ 31 -Dsystem-lua=true \ 32 -Delogind=disabled \ [all …]
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | systemd.bbclass | 4 # SPDX-License-Identifier: MIT 11 SYSTEMD_PACKAGES:class-native ?= "" 12 SYSTEMD_PACKAGES:class-nativesdk ?= "" 14 # Whether to enable or disable the services on installation. 21 # If the distro features have systemd but not sysvinit, inhibit update-rcd 22 # from doing any work so that pure-systemd images don't have redundant init 25 d.appendVar("DEPENDS", " systemd-systemctl-native") 26 d.appendVar("PACKAGE_WRITE_DEPS", " systemd-systemctl-native") 35 if [ -n "$D" ]; then 36 OPTS="--root=$D" [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/lvm2/ |
| H A D | lvm2.inc | 4 LICENSE = "GPL-2.0-only & LGPL-2.1-only" 12 file://0001-implement-libc-specific-reopen_stream.patch \ 13 file://0004-tweak-MODPROBE_CMD-for-cross-compile.patch \ 14 file://0001-Avoid-bashisms-in-init-scripts.patch \ 15 file://0005-do-not-build-manual.patch \ 16 file://0006-start-lvm2-monitor.service-after-tmp.mount.patch \ 17 file://reproducible-build.patch \ 18 file://0001-include-libgen.h-for-basename.patch \ 27 inherit autotools-brokensep pkgconfig systemd 41 m = re.match(r'(\w+)[-. ](\w+)[-. ](\w+)', line.strip()) [all …]
|
| /openbmc/phosphor-webui/app/access-control/controllers/ |
| H A D | user-controller.js | 2 * Controller for user Accounts 4 * @module app/access-control 27 {type: 'disable', label: 'Disable'}, 32 * @param {*} user 34 function checkIfRoot(user) { argument 35 return user.UserName === 'root' ? true : false; 40 * @param {*} user 41 * @returns user 43 function mapTableData(user) { argument 44 const accountStatus = user.Locked ? 'Locked' : [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
| H A D | jquery.treetable.css | 2 display: inline-block; 5 text-align: right; 7 /* Disable text selection of nodes (for better D&D UX) */ 8 user-select: none; 9 -khtml-user-select: none; 10 -moz-user-select: none; 11 -o-user-select: none; 12 -webkit-user-select: none; 14 /* Force content-box box model for indenter (Bootstrap compatibility) */ 15 -webkit-box-sizing: content-box; [all …]
|