| /openbmc/bmcweb/scripts/ |
| H A D | generate_auth_certificates.py | 89 builder = x509.CertificateBuilder() 98 builder = builder.subject_name(name) 99 builder = builder.issuer_name(name) 101 builder = builder.not_valid_before( 104 builder = builder.not_valid_after( 107 builder = builder.serial_number(x509.random_serial_number()) 108 builder = builder.public_key(public_key) 111 builder = builder.add_extension(basic_constraints, critical=True) 124 builder = builder.add_extension(usage, critical=False) 128 builder = builder.add_extension(auth_key, critical=False) [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/images/ |
| H A D | build-appliance-image_15.0.0.bb | 50 cp -R ${UNPACKDIR}/git ${IMAGE_ROOTFS}/home/builder/poky 52 mkdir -p ${IMAGE_ROOTFS}/home/builder/poky/build/conf 53 mkdir -p ${IMAGE_ROOTFS}/home/builder/poky/build/downloads 55 cp -RpL ${DL_DIR}/* ${IMAGE_ROOTFS}/home/builder/poky/build/downloads/ 57 rm -rf ${IMAGE_ROOTFS}/home/builder/poky/build/downloads/git2_* 61 cp ${UNPACKDIR}/README_VirtualBox_Guest_Additions.txt ${IMAGE_ROOTFS}/home/builder/ 64 cp ${UNPACKDIR}/README_VirtualBox_Toaster.txt ${IMAGE_ROOTFS}/home/builder/ 66 echo "INHERIT += \"rm_work\"" >> ${IMAGE_ROOTFS}/home/builder/poky/build/conf/auto.conf 67 echo "export LC_ALL=en_US.utf8" >> ${IMAGE_ROOTFS}/home/builder/.bashrc 68 echo "export TERM=xterm-color" >> ${IMAGE_ROOTFS}/home/builder/.bashrc [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-scikit-build-core/ |
| H A D | 0001-builder.py-Check-PYTHON_INCLUDE_DIR.patch | 4 Subject: [PATCH] builder.py: Check PYTHON_INCLUDE_DIR 14 src/scikit_build_core/builder/builder.py | 2 +- 17 diff --git a/src/scikit_build_core/builder/builder.py b/src/scikit_build_core/builder/builder.py 19 --- a/src/scikit_build_core/builder/builder.py 20 +++ b/src/scikit_build_core/builder/builder.py 21 @@ -228,7 +228,7 @@ class Builder:
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | builderthread.py | 50 """This thread processes results from builder threads. 52 It simply passes the results on to the builder. There is only one 55 def __init__(self, builder): argument 59 builder: Builder which will be sent each result 62 self.builder = builder 70 result = self.builder.out_queue.get() 71 self.builder.ProcessResult(result) 72 self.builder.out_queue.task_done() 82 builder: The builder which contains information we might need 86 def __init__(self, builder, thread_num, incremental, per_board_out_dir): argument [all …]
|
| H A D | control.py | 12 from builder import Builder 44 def ShowActions(series, why_selected, boards_selected, builder, options, argument 57 builder: The builder that will be used to build the commits 70 print 'Build directory: %s' % builder.base_dir 119 make_func: Make function to use for the builder. This is called 126 global builder 281 # Create a new builder with the selected options. 292 builder = Builder(toolchains, output_dir, options.git_dir, 302 builder.force_config_on_failure = not options.quick 304 builder.do_make = make_func [all …]
|
| H A D | test.py | 18 import builder 184 """Test basic builder operation and output 193 build = builder.Builder(self.toolchains, base_dir, None, 1, 2, 316 """Test basic builder operation by building a branch""" 414 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2, 418 subject = self.commits[1].subject.translate(builder.trans_valid_chars) 424 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2, 431 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
|
| /openbmc/openbmc/poky/bitbake/lib/bs4/ |
| H A D | __init__.py | 37 from .builder import ( 85 parsers. To write a new tree builder, you'll need to understand 92 The tree builder may call these methods from its feed() implementation: 112 # If the end-user gives no indication which tree builder they 122 def __init__(self, markup="", features=None, builder=None, argument 138 :param builder: A TreeBuilder subclass to instantiate (or 186 "BeautifulSoup constructor. The tree builder is responsible " 200 "BeautifulSoup constructor. The tree builder is responsible " 233 # We need this information to track whether or not the builder 236 original_builder = builder [all …]
|
| H A D | CHANGELOG | 196 tree builder. [bug=1934003] 264 * The html.parser tree builder can now handle named entities 266 tree builder does. Note that the lxml HTML tree builder doesn't handle 318 builder) which lets you customize the handling of markup that 376 * The html.parser tree builder now correctly handles DOCTYPEs that are 479 * Fix a number of problems with the tree builder that caused 483 * Fixed a problem with the tree builder in which elements that 518 * Fixed a problem where the html.parser tree builder interpreted 579 * Fixed foster parenting when html5lib is the tree builder. Thanks to 582 * Fixed yet another problem that caused the html5lib tree builder to [all …]
|
| /openbmc/openbmc/poky/meta/recipes-graphics/builder/ |
| H A D | builder_0.1.bb | 17 # builder user password is "builder" 23 --user-group builder" 29 chown builder.builder ${D}${sysconfdir}/mini_x/session.d/builder_session.sh 32 # do not report CVEs for other builder apps 33 CVE_PRODUCT = "yoctoproject:builder"
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | oe-pkgdata-browser | 106 builder = Gtk.Builder() 107 builder.add_from_file(os.path.join(os.path.dirname(__file__), "oe-pkgdata-browser.glade")) 109 self.window = builder.get_object("window") 112 self.recipe_store = builder.get_object("recipe_store") 113 self.recipe_view = builder.get_object("recipe_view") 114 self.package_store = builder.get_object("package_store") 115 self.package_view = builder.get_object("package_view") 117 # Somehow resizable does not get set via builder xml 118 package_name_column = builder.get_object("package_name_column") 120 file_name_column = builder.get_object("file_name_column") [all …]
|
| /openbmc/u-boot/Documentation/sphinx/ |
| H A D | kfigure.py | 41 * generate PDF from SVG / used by PDF (LaTeX) builder 43 * generate SVG (html-builder) and PDF (latex-builder) from DOT files. 129 app.connect('builder-inited', setupTools) 171 This function is called once, when the builder is initiated. 203 """Convert a image node for the builder. 205 Different builder prefer different image formats, e.g. *latex* builder 206 prefer PDF while *html* builder prefer SVG format for images. 211 app = translator.builder.app 215 src_fname = path.join(translator.builder.srcdir, img_node['uri']) 217 src_fname = path.join(translator.builder.outdir, img_node['uri']) [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/rust/files/ |
| H A D | Zdual-proc-macros-additional-check.patch | 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 10 +++ b/src/bootstrap/src/core/builder/cargo.rs 11 @@ -646,7 +646,10 @@ impl Builder<'_> { 23 @@ -654,6 +657,7 @@ impl Builder<'_> {
|
| H A D | 0001-Disable-libunwind-cross-architecture-unwinding.patch | 26 @@ -1430,6 +1430,7 @@ fn run(self, builder: &Builder<'_>) -> Self::Output { 34 @@ -1447,12 +1448,10 @@ fn run(self, builder: &Builder<'_>) -> Self::Output {
|
| H A D | revert-link-std-statically-in-rustc_driver-feature.patch | 142 diff --git a/src/bootstrap/src/core/builder/cargo.rs b/src/bootstrap/src/core/builder/cargo.rs 144 --- a/src/bootstrap/src/core/builder/cargo.rs 145 +++ b/src/bootstrap/src/core/builder/cargo.rs 146 @@ -1146,7 +1146,7 @@ impl Builder<'_> { 204 let src_libdir = builder.sysroot_target_libdir(build_compiler, host); 205 for f in builder.read_dir(&src_libdir) { 214 - let can_be_rustc_dynamic_dep = if builder 226 builder.copy_link(&f.path(), &rustc_libdir.join(&filename));
|
| /openbmc/openbmc/poky/meta/recipes-graphics/builder/files/ |
| H A D | builder_session.sh | 8 export PSEUDO_LOCALSTATEDIR=/home/builder/pseudo 10 export GIT_PROXY_COMMAND=/home/builder/poky/scripts/oe-git-proxy 16 if [ ! -d /home/builder/.local/share/applications ]; then 17 mkdir -p /home/builder/.local/share/applications/ 30 cd /home/builder/poky
|
| /openbmc/openbmc/meta-raspberrypi/.github/workflows/ |
| H A D | yocto-layer.yml | 27 .github/workflows/docker-images/yocto-builder/** 37 - name: Build a temporary yocto-builder image 40 docker_image: yocto-builder 48 "yocto-builder-${{ github.event.number }}" \ 54 docker_image: yocto-builder-${{ github.event.number }}
|
| H A D | yocto-builds.yml | 51 .github/workflows/docker-images/yocto-builder/** 61 - name: Build a temporary yocto-builder image 64 docker_image: yocto-builder 81 "yocto-builder-${{ github.event.number }}" \ 87 docker_image: yocto-builder-${{ github.event.number }}
|
| /openbmc/openbmc/poky/meta/recipes-devtools/go/go/ |
| H A D | 0001-cmd-go-make-content-based-hash-generation-less-pedan.patch | 55 @@ -237,6 +237,8 @@ func (b *Builder) Do(ctx context.Context, root *Action) { 62 func (b *Builder) buildActionID(a *Action) cache.ActionID { 64 @@ -258,7 +260,7 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID { 73 @@ -293,9 +295,9 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID { 85 @@ -303,14 +305,14 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID { 102 @@ -327,7 +329,7 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID { 133 -func (b *Builder) CFlags(p *load.Package) (cppflags, cflags, cxxflags, fflags, ldflags []string, e… 134 +func (b *Builder) CFlags(p *load.Package, filtered bool) (cppflags, cflags, cxxflags, fflags, ldfl… 138 @@ -2676,6 +2695,13 @@ func (b *Builder) CFlags(p *load.Package) (cppflags, cflags, cxxflags, fflag… 152 @@ -2693,7 +2719,7 @@ func (b *Builder) cgo(a *Action, cgoExe, objdir string, pcCFLAGS, pcLDFLAGS, … [all …]
|
| H A D | 0007-exec.go-filter-out-build-specific-paths-from-linker-.patch | 22 @@ -1426,6 +1426,29 @@ func (b *Builder) linkActionID(a *Action) cache.ActionID { 51 func (b *Builder) printLinkerConfig(h io.Writer, p *load.Package) { 52 @@ -1436,7 +1459,7 @@ func (b *Builder) printLinkerConfig(h io.Writer, p *load.Package) {
|
| /openbmc/qemu/target/riscv/ |
| H A D | gdbstub.c | 259 GDBFeatureBuilder builder; in riscv_gen_dynamic_csr_feature() local 274 gdb_feature_builder_init(&builder, &cpu->dyn_csr_feature, in riscv_gen_dynamic_csr_feature() 289 gdb_feature_builder_append_reg(&builder, name, bitsize, i, in riscv_gen_dynamic_csr_feature() 294 gdb_feature_builder_end(&builder); in riscv_gen_dynamic_csr_feature() 307 GDBFeatureBuilder builder; in ricsv_gen_dynamic_vector_feature() local 310 gdb_feature_builder_init(&builder, &cpu->dyn_vreg_feature, in ricsv_gen_dynamic_vector_feature() 318 &builder, "<vector id=\"%s\" type=\"%s\" count=\"%d\"/>", in ricsv_gen_dynamic_vector_feature() 323 gdb_feature_builder_append_tag(&builder, "<union id=\"riscv_vector\">"); in ricsv_gen_dynamic_vector_feature() 325 gdb_feature_builder_append_tag(&builder, in ricsv_gen_dynamic_vector_feature() 329 gdb_feature_builder_append_tag(&builder, "</union>"); in ricsv_gen_dynamic_vector_feature() [all …]
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/uefi/files/ |
| H A D | 0001-Platform-Sgi-workaround-ArmFfaLib-error.patch | 8 | Active Platform = /builder/meta-arm/build/tmp/work/sgi575-poky-linux/edk2-firmware/20250… 12 | /builder/meta-arm/build/tmp/work/sgi575-poky-linux/edk2-firmware/202502/edk2/edk2-platforms/Platf… 13 | in [/builder/meta-arm/build/tmp/work/sgi575-poky-linux/edk2-firmware/202502/edk2/ArmPkg/Drivers/… 14 | consumed by module [/builder/meta-arm/build/tmp/work/sgi575-poky-linux/edk2-firmware/202502/edk2…
|
| /openbmc/openbmc/poky/meta/recipes-support/serf/serf/ |
| H A D | 0002-SConstruct-Fix-path-quoting-for-.def-generator.patch | 23 - Builder(action = sys.executable + ' build/gen_def.py $SOURCES > $TARGET', 24 + Builder(action = '"%s" "%s" $SOURCES > $TARGET' % (sys.executable, gen_def_script,),
|
| /openbmc/openbmc/poky/meta/recipes-devtools/perl/ |
| H A D | libtest-fatal-perl_0.017.bb | 24 perl-module-test-builder \ 32 perl-module-test-builder-tester \
|
| /openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtest/ |
| H A D | libtest-warn-perl_0.37.bb | 35 perl-module-test-builder \ 36 perl-module-test-builder-tester \
|
| /openbmc/openbmc/meta-raspberrypi/.github/workflows/docker-images/yocto-builder/ |
| H A D | Dockerfile | 41 COPY ./yocto-builder/entrypoint-yocto-check-layer.sh / 42 COPY ./yocto-builder/entrypoint-build.sh /
|