/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_builddashboard_page_recipes.py | 5 # Copyright (C) 2013-2016 Intel Corporation 7 # SPDX-License-Identifier: GPL-2.0-only 13 from orm.models import Project, Build, Recipe, Task, Layer, Layer_Version 17 """ Test build dashboard recipes sub-page """ 24 self.build = Build.objects.create(project=project, 31 build=self.build) 35 task = Task.objects.create(build=self.build, recipe=recipe, order=1) 37 Target.objects.create(build=self.build, task=task, target='do_build') 41 Check that non-hideable columns of the table on the recipes sub-page 42 are disabled on the edit columns dropdown. [all …]
|
H A D | test_builddashboard_page_tasks.py | 5 # Copyright (C) 2013-2016 Intel Corporation 7 # SPDX-License-Identifier: GPL-2.0-only 13 from orm.models import Project, Build, Recipe, Task, Layer, Layer_Version 17 """ Test build dashboard tasks sub-page """ 24 self.build = Build.objects.create(project=project, 34 task = Task.objects.create(build=self.build, recipe=recipe, order=1) 36 Target.objects.create(build=self.build, task=task, target='do_build') 40 Check that non-hideable columns of the table on the tasks sub-page 41 are disabled on the edit columns dropdown. 43 url = reverse('tasks', args=(self.build.id,)) [all …]
|
/openbmc/phosphor-fan-presence/ |
H A D | README.md | 5 - [Overview](#overview) 6 - [Building](#building) 7 - [Contents](#contents) 11 The phosphor-fan-presence repository provides a set of thermal related 29 - [Fan Control](#fan-control) 31 - To disable from building, use the `-Dcontrol-service=disabled` meson option: 33 meson build -Dcontrol-service=disabled 35 - [Fan Presence Detection](#fan-presence-detection) 37 - To disable from building, use the `-Dpresence-service=disabled` meson 40 meson build -Dpresence-service=disabled [all …]
|
H A D | meson.options | 2 option('tests', type: 'feature', value: 'enabled', description: 'Build tests.') 5 'json-config', 12 'machine-name', 21 'control-service', 24 description: 'Build fan control service.', 28 'json-control', 32 (using json-control=disabled) when json-config is enabled. 33 If json-contro [all...] |
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fbida/ |
H A D | fbida_git.bb | 7 LICENSE = "GPL-2.0-only" 14 file://fix-preprocessor.patch \ 15 file://support-jpeg-turbo.patch \ 16 file://fbida-gcc10.patch \ 17 file://0001-meson.build-install-fbgs-shell-script.patch \ 18 file://0002-meson.build-add-features-options-for-png-gif-tiff-we.patch \ 19 file://0003-meson.build-do-not-require-xkbcommon.patch \ 20 file://0001-meson.build-make-fbpdf-build-optional.patch \ 21 file://0001-fbida-Include-missing-sys-types.h.patch \ 32 PACKAGECONFIG[gif] = "-Dgif=enabled,-Dgif=disabled,giflib" [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | projecttopbar.js | 5 var projectNameForm = $("#project-name-change-form"); 6 var projectNameContainer = $("#project-name-container"); 7 var projectName = $(".project-name"); 8 var projectNameFormToggle = $("#project-change-form-toggle"); 9 var projectNameChangeCancel = $("#project-name-change-cancel"); 11 // this doesn't exist for command-line builds 12 var newBuildTargetInput = $("#build-input"); 14 var newBuildTargetBuildBtn = $("#build-button"); 17 var updateProjectBtn = $("#update-project-button"); 18 var cancelProjectBtn = $("#cancel-project-button"); [all …]
|
H A D | projectpage.js | 5 var layerAddInput = $("#layer-add-input"); 6 var layersInPrjList = $("#layers-in-project-list"); 7 var layerAddBtn = $("#add-layer-btn"); 9 var machineChangeInput = $("#machine-change-input"); 10 var machineChangeBtn = $("#machine-change-btn"); 11 var machineForm = $("#select-machine-form"); 12 var machineChangeFormToggle = $("#change-machine-toggle"); 13 var machineNameTitle = $("#project-machine-name"); 14 var machineChangeCancel = $("#cancel-machine-change"); 15 var machineInputForm = $("#machine-input-form"); [all …]
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | build-igt.sh | 2 # SPDX-License-Identifier: MIT 4 set -ex 6 git clone https://gitlab.freedesktop.org/drm/igt-gpu-tools.git --single-branch --no-checkout 7 cd igt-gpu-tools 11 . ../.gitlab-ci/container/create-cross-file.sh armhf 12 EXTRA_MESON_ARGS="--cross-file /cross_file-armhf.txt" 15 MESON_OPTIONS="-Doverlay=disabled \ 16 -Dchamelium=disabled \ 17 -Dvalgrind=disabled \ 18 -Dman=enabled \ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libesmtp/libesmtp/ |
H A D | 0001-Add-build-option-for-NTLM-support.patch | 4 Subject: [PATCH] Add build option for NTLM support 8 build option. This commits adds the 'ntlm' option back. It's also 9 disabled by default. 14 Upstream-Status: Backport [https://github.com/libesmtp/libESMTP/commit/1c304e7886a08fb56485e41614ff… 15 Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com> 16 --- 17 meson.build | 13 ++++++++++--- 19 ntlm/meson.build | 2 +- 20 3 files changed, 12 insertions(+), 4 deletions(-) 22 diff --git a/meson.build b/meson.build [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | editcustomimage_modal.html | 1 <!-- 2 modal dialog shown on the build dashboard, for editing an existing custom image; 7 build - a Build object 8 --> 9 <div class="modal fade" aria-hidden="false" id="edit-custom-image-modal"> 10 <div class="modal-dialog"> 11 <div class="modal-content"> 12 <div class="modal-header"> 13 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> 17 <div class="modal-body"> [all …]
|
H A D | newproject.html | 5 {% block title %} Create a new project - Toaster {% endblock %} 9 <div class="col-md-12"> 10 <div class="page-header"> 14 <div class="alert alert-danger" role="alert">{{alert}}</div> 18 <div class="form-group" id="validate-project-name"> 19 … <label class="control-label">Project name <span class="text-muted">(required)</span></label> 20 … <input type="text" class="form-control" required id="new-project-name" name="projectname"> 22 …<p class="help-block text-danger" style="display: none;" id="hint-error-project-name">A project wi… 24 <label class="project-form">Project type:</label> 26 …<label class="project-form radio" style="padding-left: 35px;"><input id='type-new' type="radio"… [all …]
|
H A D | projecttopbar.html | 19 <div class="col-md-12"> 20 …<div class="alert alert-success alert-dismissible change-notification" id="project-created-notific… 21 <button type="button" class="close" data-dismiss="alert">×</button> 22 …-link" href="{% url 'projectmachines' project.id %}">select your target machine</a> and <a class="… 24 <!-- project name --> 25 <div class="page-header"> 26 <h1 id="project-name-container"> 27 <span class="project-name">{{project.name}}</span> 29 <span class="glyphicon glyphicon-edit" id="project-change-form-toggle"></i> 32 …<span class="glyphicon glyphicon-question-sign get-help" title="This project shows information abo… [all …]
|
/openbmc/smbios-mdr/ |
H A D | meson.options | 4 value: 'disabled', 5 description: 'Build tests' 9 'dimm-dbus', 12 description: 'Expose DIMM D-Bus Interface' 16 'dimm-only-locator', 18 value: 'disabled', 23 'assoc-trim-path', 25 value: 'disabled', 33 description: 'Build CPUInfo service' 37 'cpuinfo-peci', [all …]
|
/openbmc/linux/security/apparmor/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 19 bool "Build AppArmor with debug code" 23 Build apparmor with debugging logic in apparmor. Not all 29 bool "Build AppArmor with debugging asserts" 56 can be disabled for embedded systems where reducing memory and 70 time and can be disabled for small embedded systems. 82 these cases policy hashing can be disabled by default and 103 verification of loaded policy. This should not be disabled 109 tristate "Build KUnit tests for policy_unpack.c" if !KUNIT_ALL_TESTS 118 production build. [all …]
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | gobject-introspection.rst | 1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK 7 is the standard mechanism for accessing GObject-based software from 20 GObject Introspection Repository (GIR) files go to ``-dev`` packages, 28 Generating this data in a cross-compilation environment is difficult 30 code needs to be executed on the build host. This problem is solved with 31 the OpenEmbedded build system by running the code through QEMU, which 33 perfectly as mentioned in the ":ref:`dev-manual/gobject-introspection:known issues`" 42 #. Inherit the :ref:`ref-classes-gobject-introspection` class. 44 #. Make sure introspection is not disabled anywhere in the recipe or 46 "gobject-introspection-data" is not in [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/fluentbit/fluentbit/ |
H A D | 0004-wasm-avoid-cmake-try_run-when-cross-compiling.patch | 4 Subject: [PATCH] wasm: avoid cmake try_run when cross-compiling for x86 8 cmake try_run does not work when cross-compiling because the test program 11 | CMake Error: try_run() invoked in cross-compiling mode, please set the following cache variables … 13 | For details see .../fluentbit/3.1.9/build/TryRunResults.cmake 14 | Write linear memory base addr to x86 GS register disabled 15 | -- Configuring incomplete, errors occurred! 21 fixed in https://github.com/bytecodealliance/wasm-micro-runtime/pull/3066. 23 Upstream-Status: Pending [https://github.com/fluent/fluent-bit/pull/8744] 25 Signed-off-by: Patrick Wicki <patrick.wicki@siemens.com> 26 --- [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fbida/files/ |
H A D | 0001-meson.build-make-fbpdf-build-optional.patch | 4 Subject: [PATCH] meson.build: make fbpdf build optional 6 Upstream-Status: Submitted [https://github.com/kraxel/fbida/pull/4] 7 Signed-off-by: "Meyer, Wolfgang" <Wolfgang.Meyer@gossenmetrawatt.com> 8 --- 9 meson.build | 22 ++++++++++++---------- 11 2 files changed, 13 insertions(+), 10 deletions(-) 13 diff --git a/meson.build b/meson.build 15 --- a/meson.build 16 +++ b/meson.build 17 @@ -15,11 +15,11 @@ x11resdir = x11resrun.stdout().strip() [all …]
|
/openbmc/qemu/ |
H A D | configure | 14 source_path=$(cd "$(dirname -- "$0")"; pwd) 16 if test "$PWD" -ef "$source_path" 18 echo "Using './build' as the directory for build output" 20 MARKER=build/auto-created-by-configure 22 if test -e build 24 if test -f $MARKER 26 rm -rf build 28 echo "ERROR: ./build dir already exists and was not previously created by configure" 33 if ! mkdir build || ! touch $MARKER 35 echo "ERROR: Could not create ./build directory. Check the permissions on" [all …]
|
/openbmc/linux/Documentation/bpf/libbpf/ |
H A D | libbpf_build.rst | 1 .. SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 8 pkg-config is used by default to find libelf, and the program called 11 If using pkg-config at build time is not desired, it can be disabled by 14 To build both static libbpf.a and shared libbpf.so: 16 .. code-block:: bash 21 To build only static libbpf.a library in directory build/ and install them 24 .. code-block:: bash 27 $ mkdir build root 28 $ BUILD_STATIC_ONLY=y OBJDIR=build DESTDIR=root make install 30 To build both static libbpf.a and shared libbpf.so against a custom libelf [all …]
|
/openbmc/openbmc-build-scripts/scripts/ |
H A D | build-unit-test-docker | 3 # Build the required docker image to run package unit tests 7 # default is openbmc/ubuntu-unit-test 8 # DISTRO: <optional, the distro to build a docker image against> 9 # FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker 13 # BRANCH: <optional, branch to build from each of the openbmc/ 35 # typing.Dict is used for type-hints. 61 def __init_subclass__(cls, **kwargs: Any) -> None: 75 # url [optional]: lambda function to create URL: (package, rev) -> url. 79 # build_type [required]: Build typ 672 def build(pkg: str, tag: str, dockerfile: str) -> None: global() member in Docker [all...] |
/openbmc/phosphor-power/ |
H A D | meson.options | 2 'input-history-busname-root', 5 description: 'The D-Bus busname root for the PS input history.', 8 'input-history-sensor-root', 11 description: 'The D-Bus power sensors namespace root.', 14 'input-history-syn [all...] |
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | bootstrap3-transition.css | 8 padding-top: 2px !important; 18 margin-bottom: 0; 23 ul.configuration-list { 24 margin-left: 0px; 27 .configuration-list .checkbox { 28 margin-top: 0; 46 /* Remove the hovering from the .btn-primary buttons when they are disabled */ 48 .btn-primary.disabled.focus, 49 .btn-primary.disabled:focus, 50 .btn-primary.disabled:hover, [all …]
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/tracker/ |
H A D | tinysparql_3.8.1.bb | 2 LICENSE = "GPL-2.0-only & LGPL-2.1-only" 9 dbus-native \ 10 glib-2.0 \ 14 json-glib \ 19 inherit gettext gnomebase gobject-introspection vala gtk-doc bash-completion 21 SRC_URI += "file://0001-fix-reproducibility.patch" 22 SRC_URI += "file://0001-src-libtracker-sparql-meson.build-dont-create-compat.patch" 25 # text search is not an option anymore and requires sqlite3 build with 31 echo "[properties]" > ${WORKDIR}/meson-tracker.cross 32 echo "sqlite3_has_fts5 = 'true'" >> ${WORKDIR}/meson-tracker.cross [all …]
|
/openbmc/phosphor-logging/ |
H A D | meson.options | 1 option('libonly', type: 'boolean', description: 'Build library only') 2 option('tests', type: 'feature', description: 'Build tests') 4 'openpower-pel-extension', 7 value: 'disabled' 14 value: 'callouts/callouts-example.yaml', 34 value: 'disabled',
|
/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 …]
|