/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/iftop/iftop/ |
H A D | iftop-1.0-gcc10.patch | 2 GCC 10 related build failure due to global variables in a header file with omitted 5 Example build failure output: 6 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis… 7 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaktotal… 8 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peakrecv'… 9 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaksent'… 10 …: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:37: multiple definition of `totals';… 11 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:40: multiple definition of `screen_has… 12 …i_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:41: multiple definition of `service_has… 13 …in/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis… [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_most_recent_builds_states.py | 13 from orm.models import Project, Build, Task, Recipe, Layer, Layer_Version 26 build = Build.objects.create(project=project, build_name='fakebuild', 29 return BuildRequest.objects.create(build=build, project=project, 43 build = build_request.build 44 base_selector = '[data-latest-build-result="%s"] ' % build.id 46 # build queued; check shown as queued 47 selector = base_selector + '[data-build-state="Queued"]' 50 'Build queued', 'build should show queued status') 53 build.outcome = Build.IN_PROGRESS 54 build.recipes_to_parse = recipes_to_parse [all …]
|
H A D | test_builddashboard_page_artifacts.py | 16 from orm.models import Project, Release, BitbakeVersion, Build, Target, Package 21 """ Tests for artifacts on the build dashboard /build/X """ 32 def _get_build_dashboard(self, build): argument 34 Navigate to the build dashboard for build 36 url = reverse('builddashboard', args=(build.id,)) 41 Check whether the "Build artifacts" heading is visible (True if it 44 return self.element_exists('[data-heading="build-artifacts"]') 49 build dashboard, and return True if it is present, False otherwise. 55 If a build produced no artifacts, the artifacts heading and images 59 build = Build.objects.create(project=self.project, [all …]
|
H A D | test_all_builds_page.py | 19 from orm.models import BitbakeVersion, Layer, Layer_Version, Recipe, Release, Project, Build, Targe… 52 'outcome': Build.SUCCEEDED 59 'outcome': Build.FAILED 66 'outcome': Build.SUCCEEDED 69 def _get_build_time_element(self, build): argument 71 Return the HTML element containing the build time for a build 74 selector = 'div[data-latest-build-result="%s"] ' \ 75 '[data-role="data-recent-build-buildtime-field"]' % build.id 86 def _get_row_for_build(self, build): argument 87 """ Get the table row for the build from the all builds table """ [all …]
|
H A D | test_builddashboard_page.py | 16 from orm.models import Project, Release, BitbakeVersion, Build, LogMessage 22 """ Tests for the build dashboard /build/X """ 35 self.build1 = Build.objects.create(project=project, 38 outcome=Build.SUCCEEDED) 40 self.build2 = Build.objects.create(project=project, 43 outcome=Build.SUCCEEDED) 45 self.build3 = Build.objects.create(project=project, 48 outcome=Build.FAILED) 52 Variable.objects.create(build=self.build1, 55 Variable.objects.create(build=self.build2, [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | mrbsection.js | 3 $('#latest-builds').on('click', '.cancel-build-btn', function(e){ 27 // cached version of buildData, so we can determine whether a build has 31 // returns the cached version of this build, or {} is there isn't a cached one 32 function getCached(build) { argument 33 return buildData[build.id] || {}; 36 // returns true if a build's state changed to "Succeeded", "Failed" 38 function buildFinished(build) { argument 39 var cached = getCached(build); 41 cached.state !== build.state && 42 (build.state == 'Succeeded' || build.state == 'Failed' || [all …]
|
/openbmc/openbmc/poky/meta/recipes-kernel/linux/ |
H A D | kernel-devsrc.bb | 42 rm -f $kerneldir/build 44 mkdir -p $kerneldir/build 54 # for on target purposes, we unify build and source 57 ln -s build source 63 cp --parents $(find -type f -name "Makefile*" -o -name "Kconfig*") $kerneldir/build 64 cp --parents $(find -type f -name "Build" -o -name "Build.include") $kerneldir/build 68 rm -rf $kerneldir/build/scripts 69 rm -rf $kerneldir/build/include 71 # now copy in parts from the build that we'll need later 76 cp Module.symvers $kerneldir/build [all …]
|
/openbmc/linux/tools/build/Documentation/ |
H A D | Build.txt | 1 Build Framework 4 The perf build framework was adopted from the kernel build system, hence the 7 Basically the user provides set of 'Build' files that list objects and 8 directories to nest for specific target to be build. 10 Unlike the kernel we don't have a single build object 'obj-y' list that where 11 we setup source objects, but we support more. This allows one 'Build' file to 12 carry a sources list for multiple build objects. 15 Build framework makefiles 18 The build framework consists of 2 Makefiles: 20 Build.include [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | builddashboard.html | 6 {% block title %} {{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}… 8 {% if build.get_sorted_target_list.count > 0 %} 9 {{build.get_sorted_target_list.0.target}} 12 {%if build.target_set.all.count > 1%}(+{{build.target_set.all.count|add:"-1"}}){%endif%} {{build.ma… 17 <div class="{% if build.started %}col-md-10{% else %}col-md-12{% endif %}"> 18 <div class="page-header build-data"> 19 <h1>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}}</h1> 22 <!-- build result bar --> 23 …<div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == buil… 24 …><strong>{%if build.outcome == build.SUCCEEDED%}Completed{%elif build.outcome == build.FAILED%}Fai… [all …]
|
H A D | basebuildpage.html | 10 var configVarUrl = "{% url 'configvars' build.id %}"; 14 $("#delete-build-confirm").click(function(){ 21 $('#delete-build-modal button[data-dismiss="modal"]').hide(); 25 url: "{% url 'xhr_build' build.id %}", 31 libtoaster.setNotification("build-deleted", 32 $("#deleted-build-message").html()); 47 $("#build-menu li a").each(function(){ 48 /* Set the page active state in the Build menu */ 66 <span style="display:none" id="deleted-build-message"> 67 …eleted 1 build: <strong>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.m… [all …]
|
H A D | mrb_section.html | 22 {% for build in mru %} 23 …latest-build-result="{{build.id}}" class="alert build-result {% if build.outcome == build.SUCCEEDE… 29 <a class="alert-link text-uppercase" href="{% project_url build.project %}"> 30 {{build.project.name}} 37 <div class="row" data-role="build-status-container"> 47 <!-- build main template --> 48 <script id="build-template" type="text/x-jsrender"> 66 <div class="build-state" data-build-state="<%:state%>"> 68 <%include tmpl='#cloning-repos-build-template'/%> 70 <%include tmpl='#parsing-recipes-build-template'/%> [all …]
|
H A D | projectbuilds.html | 30 {{objects.paginator.count}} project build{{objects.paginator.count|pluralize}} found 63 {% for build in objects %} {# if we have a build, just display it #} 65 … "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign succe… 66 {% if build.cooker_log_path %} 68 <a href="{% url 'build_artifact' build.id "cookerlog" build.id %}"> 69 <i class="icon-download-alt" title="Download build log"></i> 75 {% for t in build.target_set.all %} 76 <a href="{% url "builddashboard" build.id %}"> 85 … <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> 86 …<td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/… [all …]
|
/openbmc/linux/samples/ |
H A D | Kconfig | 5 You can build and test sample kernel code here. 14 tristate "Build trace_events examples -- loadable modules only" 20 tristate "Build custom trace event example -- loadable modules only" 26 tristate "Build trace_printk module - tests various trace_printk formats" 33 tristate "Build register_ftrace_direct() example" 41 tristate "Build register_ftrace_direct() on multiple ips example" 50 tristate "Build custom ftrace ops example" 57 tristate "Build sample module for kernel access to Ftrace instancess" 64 tristate "Build kobject examples" 66 This config option will allow you to build a number of [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/heaptrack/ |
H A D | heaptrack_1.2.0.bb | 39 # Change Dir: '/OE/lge/build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack… 41 # Run Build Command(s): ninja -v cmTC_51d86 42 …build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack/1.2.0/recipe-sysroot-native/u… 44 …build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack/1.2.0/recipe-sysroot-native/u… 58 # ninja: build stopped: subcommand failed.
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | build.yml | 1 .build: 3 - .build-rules 4 - .container+build-rules 5 stage: build 10 - FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash drivers/gpu/drm/ci/build.sh 12 .build:arm32: 14 - .build 23 .build:arm64: 25 - .build 34 .build:x86_64: [all …]
|
/openbmc/linux/tools/build/feature/ |
H A D | Makefile | 88 BUILD = $(__BUILD) > $(@:.bin=.make.output) 2>&1 macro 89 BUILD_BFD = $(BUILD) -DPACKAGE='"perf"' -lbfd -ldl 90 …BUILD_ALL = $(BUILD) -fstack-protector-all -O2 -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -lslang… 101 $(BUILD) 104 $(BUILD) -D_GNU_SOURCE -lpthread 107 $(BUILD) -lpthread 110 $(BUILD) -fstack-protector-all 113 $(BUILD) -O2 -D_FORTIFY_SOURCE=2 116 $(BUILD) 119 $(BUILD) -lcap [all …]
|
/openbmc/openbmc/poky/documentation/ref-manual/ |
H A D | structure.rst | 20 The OpenEmbedded build system does not support file or directory 52 .. _structure-core-build: 54 ``build/`` 58 generated by the OpenEmbedded build system in its standard configuration 59 where the source tree is combined with the output. The :term:`Build Directory` 60 is created initially when you ``source`` the OpenEmbedded build environment 67 (commonly described as an "out of tree" build), see the 70 See the ":ref:`The Build Directory --- build/ <structure-build>`" section for details 71 about the contents of the :term:`Build Directory`. 117 OpenEmbedded selftests to verify the behavior of the build system. You [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/concurrencykit/concurrencykit/ |
H A D | 0001-build-Use-ilp32d-abi-on-riscv32-and-lp64d-on-rv64.patch | 4 Subject: [PATCH] build: Use ilp32d abi on riscv32 and lp64d on rv64 12 build/ck.build.riscv | 2 +- 13 build/ck.build.riscv64 | 2 +- 16 diff --git a/build/ck.build.riscv b/build/ck.build.riscv 18 --- a/build/ck.build.riscv 19 +++ b/build/ck.build.riscv 23 diff --git a/build/ck.build.riscv64 b/build/ck.build.riscv64 25 --- a/build/ck.build.riscv64 26 +++ b/build/ck.build.riscv64
|
/openbmc/openbmc/meta-security/ |
H A D | .gitlab-ci.yml | 11 - . ./oe-init-build-env $CI_PROJECT_DIR/build 12 - for x in `ls $CI_PROJECT_DIR/build/tmp/log/error-report/ | grep error_report_`; do 15 - rm -fr $CI_PROJECT_DIR/build 54 - kas shell kas/$CI_JOB_NAME.yml -c "bitbake -k security-build-image integrity-image-minimal" 55 - kas build --target harden-image-minimal kas/$CI_JOB_NAME-harden.yml 61 - kas build --target security-build-image kas/$CI_JOB_NAME.yml 67 - kas build --target security-parsec-image kas/$CI_JOB_NAME.yml 74 - kas build --target security-test-image kas/$CI_JOB_NAME.yml 75 - kas build -c testimage --target security-test-image kas/$CI_JOB_NAME.yml 80 …- kas shell kas/$CI_JOB_NAME.yml -c "bitbake -k core-image-minimal security-build-image security-… [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/management/commands/ |
H A D | runbuilds.py | 13 from orm.models import Build, LogMessage, Target 25 help = "Schedules and executes build requests as possible. "\ 42 # select the build environment and the request to build 56 logger.debug("runbuilds: No build env (%s)" % e) 59 logger.info("runbuilds: starting build %s, environment %s" % 62 # let the build request know where it is being executed 66 # this triggers an async build 72 logger.error("runbuilds: Error launching build %s" % e) 86 # Cancel the pending build and report the exception to the UI 88 build = br.build, [all …]
|
/openbmc/qemu/.gitlab-ci.d/ |
H A D | buildtest.yml | 4 build-system-alpine: 13 MAKE_CHECK_ARGS: check-build 19 - job: build-system-alpine 28 - job: build-system-alpine 35 build-system-ubuntu: 45 MAKE_CHECK_ARGS: check-build 50 - job: build-system-ubuntu 59 - job: build-system-ubuntu 66 build-system-debian: 77 MAKE_CHECK_ARGS: check-build [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr-util/ |
H A D | configure_fixes.patch | 9 AC_CONFIG_AUX_DIR(build) 11 -sinclude(build/apu-conf.m4) 12 -sinclude(build/apu-iconv.m4) 13 -sinclude(build/apu-hints.m4) 14 -sinclude(build/apr_common.m4) 15 -sinclude(build/find_apr.m4) 16 -sinclude(build/crypto.m4) 17 -sinclude(build/dbm.m4) 18 -sinclude(build/dbd.m4) 19 -sinclude(build/dso.m4) [all …]
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | Build.txt | 2 1) perf build 4 The perf build process consists of several separated building blocks, 11 Several makefiles govern the perf build: 18 main makefile that triggers build of all perf objects including 21 - tools/build/Makefile.build 22 main makefile of the build framework 24 - tools/build/Build.include 25 build framework generic definitions 27 - Build makefiles 28 makefiles that defines build objects [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/plymouth/plymouth/ |
H A D | 0001-Drop-libdl-references.patch | 13 meson.build | 2 -- 14 src/client/meson.build | 1 - 15 src/libply-splash-core/meson.build | 1 - 16 src/libply/meson.build | 1 - 19 diff --git a/meson.build b/meson.build 21 --- a/meson.build 22 +++ b/meson.build 32 diff --git a/src/client/meson.build b/src/client/meson.build 34 --- a/src/client/meson.build 35 +++ b/src/client/meson.build [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/subversion/ |
H A D | subversion_1.14.5.bb | 50 cp -f ${STAGING_DATADIR}/aclocal/libtool.m4 ${STAGING_DATADIR}/aclocal/lt*.m4 ${S}/build/ 53 …build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/build/subversion/libsvn_ra_local/libs… 55 …n `/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-qa-logrotate/build/build/tmp/sysroots/x8… 56 …/yocto-worker/nightly-qa-logrotate/build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/su…
|