Home
last modified time | relevance | path

Searched refs:pkg (Results 76 – 100 of 510) sorted by relevance

12345678910>>...21

/openbmc/openbmc/poky/meta/recipes-devtools/qemu/qemu/
H A D0004-configure-Add-pkg-config-handling-for-libgcrypt.patch4 Subject: [PATCH 04/12] configure: Add pkg-config handling for libgcrypt
6 libgcrypt may also be controlled by pkg-config, this patch adds pkg-config
26 + method: 'pkg-config',
/openbmc/openbmc/poky/meta/recipes-devtools/rpm/files/
H A D0001-build-pack.c-do-not-insert-payloadflags-into-.rpm-me.patch20 @@ -330,7 +330,7 @@ static char *getIOFlags(Package pkg)
21 headerPutString(pkg->header, RPMTAG_PAYLOADCOMPRESSOR, compr);
24 - headerPutString(pkg->header, RPMTAG_PAYLOADFLAGS, buf+1);
25 + headerPutString(pkg->header, RPMTAG_PAYLOADFLAGS, "");
H A D0001-Do-not-add-an-unsatisfiable-dependency-when-building.patch20 @@ -711,10 +711,6 @@ static rpmRC packageBinary(rpmSpec spec, Package pkg, const char *cookie, int …
21 headerPutBin(pkg->header, RPMTAG_SOURCEPKGID, spec->sourcePkgId,16);
25 - (void) rpmlibNeedsFeature(pkg, "ShortCircuited", "4.9.0-1");
28 if ((rc = getPkgFilename(pkg->header, filename)))
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A D__init__.py121 def package_info(self, pkg, cmd): argument
135 def extract(self, pkg, pkg_info): argument
146 pkg_path = pkg_info[pkg]["filepath"]
225 for pkg in packages:
427 for pkg in pkg_exclude.split():
494 def package_info(self, pkg): argument
501 pkg_arch = pkg_info[pkg]["pkgarch"]
502 pkg_filename = pkg_info[pkg]["filename"]
503 pkg_info[pkg]["filepath"] = \
508 def extract(self, pkg): argument
[all …]
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dsearch.py57 for pkg in packages:
58 if keyword_rc.search(pkg):
61 if os.path.exists(os.path.join(pkgdata_dir, 'runtime', pkg + '.packaged')):
62 with open(os.path.join(pkgdata_dir, 'runtime', pkg), 'r') as f:
68 key = key.replace(":" + pkg, "")
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/protobuf/protobuf/
H A D0001-examples-Makefile-respect-CXX-LDFLAGS-variables-fix-.patch7 * move pkg-config call to separate variable, so that the final version
11 …yle=gnu -Wl,--as-needed add_person.cc addressbook.pb.cc -o add_person_cpp `pkg-config --cflags --l…
17 * and the same with list_people_cpp this time with pkg-config already through the variable:
40 +PROTOBUF := $(shell pkg-config --cflags --libs protobuf)
48 pkg-config --cflags protobuf # fails if protobuf is not installed
49 - c++ -std=c++14 add_person.cc addressbook.pb.cc -o add_person_cpp `pkg-config --cflags --libs prot…
53 pkg-config --cflags protobuf # fails if protobuf is not installed
54 - c++ -std=c++14 list_people.cc addressbook.pb.cc -o list_people_cpp `pkg-config --cflags --libs pr…
/openbmc/qemu/hw/pci-host/
H A Dgpex-acpi.c21 Aml *pkg = aml_package(4); in acpi_dsdt_add_pci_route_table() local
22 aml_append(pkg, aml_int((slot_no << 16) | 0xFFFF)); in acpi_dsdt_add_pci_route_table()
23 aml_append(pkg, aml_int(i)); in acpi_dsdt_add_pci_route_table()
24 aml_append(pkg, aml_name("L%.02X%X", bus_num, gsi)); in acpi_dsdt_add_pci_route_table()
25 aml_append(pkg, aml_int(0)); in acpi_dsdt_add_pci_route_table()
26 aml_append(rt_pkg, pkg); in acpi_dsdt_add_pci_route_table()
161 struct Aml *pkg = aml_package(2); in acpi_dsdt_add_gpex() local
163 aml_append(pkg, aml_eisaid("PNP0A08")); in acpi_dsdt_add_gpex()
164 aml_append(pkg, aml_eisaid("PNP0A03")); in acpi_dsdt_add_gpex()
165 aml_append(dev, aml_name_decl("_CID", pkg)); in acpi_dsdt_add_gpex()
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/
H A D__init__.py101 def package_info(self, pkg, cmd): argument
117 def extract(self, pkg, pkg_info): argument
128 pkg_path = pkg_info[pkg]["filepath"]
214 for pkg in packages:
483 def package_info(self, pkg): argument
490 pkg_arch = pkg_info[pkg]["arch"]
491 pkg_filename = pkg_info[pkg]["filename"]
492 pkg_info[pkg]["filepath"] = \
497 def extract(self, pkg): argument
503 pkg_info = self.package_info(pkg)
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dopkg.py15 def pkg(self, command, expected = 0): member in OpkgTest
57 self.pkg('update')
58 self.pkg('remove run-postinsts-dev')
59 self.pkg('install run-postinsts-dev')
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/collectd/collectd/
H A Dno-gcrypt-badpath.patch21 + else if test -f "$withval/bin/pkg-config" && test -x "$withval/bin/pkg-config"; then
22 + with_libgcrypt_config="$withval/bin/pkg-config"
30 + with_libgcrypt_config="pkg-config"
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_buildsys.py150 def find_cmake_package(pkg): argument
155 if splitname[0].lower().startswith(pkg.lower()):
156 …ame[1] == '%s-config.cmake' % pkg.lower() or splitname[1] == '%sConfig.cmake' % pkg or splitname[1…
213 pkg = interpret_value(origpkg)
222 elif pkg == 'Gettext':
224 elif pkg == 'Perl':
226 elif pkg == 'PkgConfig':
228 elif pkg == 'PythonInterp':
230 elif pkg == 'PythonLibs':
234 dep = find_cmake_package(pkg)
[all …]
/openbmc/qemu/hw/i386/
H A Dacpi-microvm.c107 Aml *dsdt, *sb_scope, *scope, *pkg; in build_dsdt_microvm() local
133 pkg = aml_package(4); in build_dsdt_microvm()
134 aml_append(pkg, aml_int(ACPI_GED_SLP_TYP_S5)); in build_dsdt_microvm()
135 aml_append(pkg, aml_int(0)); /* ignored */ in build_dsdt_microvm()
136 aml_append(pkg, aml_int(0)); /* reserved */ in build_dsdt_microvm()
137 aml_append(pkg, aml_int(0)); /* reserved */ in build_dsdt_microvm()
138 aml_append(scope, aml_name_decl("_S5", pkg)); in build_dsdt_microvm()
H A Dacpi-build.c422 aml_append(pkg, zero); in aml_pci_edsm()
708 aml_append(pkg, zero); in aml_pci_pdsm()
737 aml_append(pkg, a_zero); in build_prt_entry()
738 aml_append(pkg, a_zero); in build_prt_entry()
740 aml_append(pkg, a_zero); in build_prt_entry()
741 return pkg; in build_prt_entry()
1136 Aml *pkg; in append_q35_prt_entry() local
1162 Aml *pkg; in build_q35_routing_table() local
1165 pkg = aml_package(128); in build_q35_routing_table()
1187 return pkg; in build_q35_routing_table()
[all …]
/openbmc/openbmc/poky/meta/classes/
H A Duseradd-staticids.bbclass47 def handle_missing_id(id, type, pkg, files, var, value):
149 groupadd = d.getVar("GROUPADD_PARAM:%s" % pkg)
155 d.setVar("GROUPADD_PARAM:%s" % pkg, newgroup)
267 for pkg in useradd_packages.split():
270 useradd_param = d.getVar('USERADD_PARAM:%s' % pkg)
272 #bb.warn("Before: 'USERADD_PARAM:%s' - '%s'" % (pkg, useradd_param))
274 … #bb.warn("After: 'USERADD_PARAM:%s' - '%s'" % (pkg, d.getVar('USERADD_PARAM:%s' % pkg)))
276 groupadd_param = d.getVar('GROUPADD_PARAM:%s' % pkg)
278 #bb.warn("Before: 'GROUPADD_PARAM:%s' - '%s'" % (pkg, groupadd_param))
280 … #bb.warn("After: 'GROUPADD_PARAM:%s' - '%s'" % (pkg, d.getVar('GROUPADD_PARAM:%s' % pkg)))
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/sdkext/
H A Dcontext.py15 def hasHostPackage(self, pkg): argument
17 if pkg.startswith("packagegroup-cross-canadian-"):
19 return self._hasPackage(self.host_pkg_manifest, pkg)
/openbmc/linux/drivers/md/
H A Ddm-log-userspace-base.c715 } pkg; in userspace_get_resync_work() local
720 rdata_size = sizeof(pkg); in userspace_get_resync_work()
724 *region = pkg.r; in userspace_get_resync_work()
725 return (r) ? r : (int)pkg.i; in userspace_get_resync_work()
741 } pkg; in userspace_set_region_sync() local
743 pkg.r = region; in userspace_set_region_sync()
744 pkg.i = (int64_t)in_sync; in userspace_set_region_sync()
747 (char *)&pkg, sizeof(pkg), NULL, NULL); in userspace_set_region_sync()
839 } pkg; in userspace_is_remote_recovering() local
857 (char *)&pkg, &rdata_size); in userspace_is_remote_recovering()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/go/
H A Dgo-target.inc30 do_compile[cleandirs] += "${GOTMPDIR} ${B}/bin ${B}/pkg"
33 install -d ${D}${libdir}/go/pkg/tool
34 cp --preserve=mode,timestamps -R ${B}/pkg/tool/${TARGET_GOTUPLE} ${D}${libdir}/go/pkg/tool/
49 FILES:${PN} = "${libdir}/go/bin ${libdir}/go/pkg/tool/${TARGET_GOTUPLE} ${bindir}"
H A Dgo-crosssdk.inc18 do_compile[cleandirs] += "${GOTMPDIR} ${B}/bin ${B}/pkg"
35 install -d ${D}${libdir}/go/pkg/tool
37 cp --preserve=mode,timestamps -R ${S}/pkg/tool/${BUILD_GOTUPLE} ${D}${libdir}/go/pkg/tool/
/openbmc/linux/drivers/acpi/acpica/
H A Dutstate.c209 state->pkg.source_object = (union acpi_operand_object *)internal_object; in acpi_ut_create_pkg_state()
210 state->pkg.dest_object = external_object; in acpi_ut_create_pkg_state()
211 state->pkg.index = index; in acpi_ut_create_pkg_state()
212 state->pkg.num_packages = 1; in acpi_ut_create_pkg_state()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/colord/colord-native/
H A DMakefile5 CFLAGS+=$(shell pkg-config-native --cflags gio-2.0)
6 CFLAGS+=$(shell pkg-config-native --cflags lcms2)
9 LDFLAGS+=$(shell pkg-config-native --libs gio-2.0)
10 LDFLAGS+=$(shell pkg-config-native --libs lcms2)
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dgo-ptest.bbclass12 go_list_package_tests | while read pkg; do
13 cd ${B}/src/$pkg
14 ${GO} test ${GOPTESTBUILDFLAGS} $pkg
15 find . -mindepth 1 -maxdepth 1 -type f -name '*.test' -exec echo $pkg/{} \; | \
H A Dgo.bbclass45 GO_RPATH_LINK = "${@'-Wl,-rpath-link=${STAGING_DIR_TARGET}${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlin…
46 GO_RPATH = "${@'-r ${libdir}/go/pkg/${TARGET_GOTUPLE}_dynlink' if d.getVar('GO_DYNLINK') else ''}"
47 GO_RPATH:class-native = "${@'-r ${STAGING_LIBDIR_NATIVE}/go/pkg/${TARGET_GOTUPLE}_dynlink' if d.get…
48 GO_RPATH_LINK:class-native = "${@'-Wl,-rpath-link=${STAGING_LIBDIR_NATIVE}/go/pkg/${TARGET_GOTUPLE}…
65 GOTOOLDIR = "${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/go/pkg/tool/${BUILD_GOTUPLE}"
66 GOTOOLDIR:class-native = "${STAGING_LIBDIR_NATIVE}/go/pkg/tool/${BUILD_GOTUPLE}"
127 do_compile[cleandirs] = "${B}/bin ${B}/pkg"
133 tar -C ${B} -cf - --exclude-vcs --exclude '*.test' --exclude 'testdata' pkg | \
159 FILES:${PN}-staticdev = "${libdir}/go/pkg"
/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/
H A D0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch19 apt-pkg/deb/dpkgpm.cc | 9 ++-------
22 diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc
24 --- a/apt-pkg/deb/dpkgpm.cc
25 +++ b/apt-pkg/deb/dpkgpm.cc
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/opencv/
H A Dopencv_4.9.0.bb152 for pkg in packages[1:]:
153 if not pkg in blacklist and not pkg in metapkg_rdepends and pkg.endswith('-dev'):
154 metapkg_rdepends.append(pkg)
161 for pkg in packages[1:]:
162pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith…
163 metapkg_rdepends.append(pkg)
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/omxplayer/omxplayer/
H A Duse-native-pkg-config.patch6 Force the pkg-config native tool. Strangely ffmpeg prepends cross_prefix
27 + --pkg-config=pkg-config

12345678910>>...21