Home
last modified time | relevance | path

Searched refs:debuginfod (Results 1 – 25 of 26) sorted by relevance

12

/openbmc/linux/scripts/
H A Ddecode_stacktrace.sh57 debuginfod=
60 if type debuginfod-find >/dev/null 2>&1 ; then
61 debuginfod=${1-only}
64 if [[ $vmlinux == "" && -z $debuginfod ]] ; then
80 if [[ -n $debuginfod ]] ; then
82 debuginfod-find debuginfo $modbuildid && return
86 if [[ $debuginfod == "only" ]] ; then
224 vmlinux=$(debuginfod-find debuginfo $vmlinux_buildid)
318 elif [[ -n $debuginfod && $line =~ PID:\ [0-9]+\ Comm: ]]; then
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Ddebuginfod.py42 if self.debuginfod.poll():
44 self.debuginfod.communicate()
71 self.debuginfod = native_bindir / "debuginfod"
75 self.debuginfod,
104 self.debuginfod = subprocess.Popen(cmd, env={})
134 self.debuginfod.kill()
160 self.debuginfod.kill()
/openbmc/openbmc/poky/meta/recipes-devtools/gdb/
H A Dgdb-cross.inc8 PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
11 PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils-native"
H A Dgdb-cross-canadian.inc15 PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
21 PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, nativesdk-elfutils"
H A Dgdb-common.inc33 PACKAGECONFIG ??= "readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)} python \
42 PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils"
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/
H A Dbinutils_2.43.1.bb35 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
36 PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils"
/openbmc/openbmc/poky/meta/recipes-devtools/elfutils/
H A Delfutils_0.192.bb7 … file://debuginfod/debuginfod-client.c;endline=28;md5=6b7b0a4b25197d7f2e12b2f4aa1c86b8 \
43 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'debuginfod', 'debuginfod libdebuginfod'…
50 PACKAGECONFIG[debuginfod] = "--enable-debuginfod,--disable-debuginfod,libarchive sqlite3 libmicroht…
102 cp -r ${B}/debuginfod ${D}${PTEST_PATH}
/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/
H A Dsystemtap_git.bb28 … "translator sqlite monitor python3-probes ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
34 PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod"
/openbmc/linux/tools/perf/
H A Dbuiltin-buildid-cache.c381 struct perf_debuginfod debuginfod = { }; in cmd_buildid_cache() local
406 OPT_STRING_OPTARG_SET(0, "debuginfod", &debuginfod.urls, in cmd_buildid_cache()
407 &debuginfod.set, "debuginfod urls", in cmd_buildid_cache()
419 ret = perf_config(perf_buildid_cache_config, &debuginfod); in cmd_buildid_cache()
434 perf_debuginfod_setup(&debuginfod); in cmd_buildid_cache()
H A Dbuiltin-version.c66 STATUS(HAVE_DEBUGINFOD_SUPPORT, debuginfod); in library_status()
H A Dbuiltin-record.c177 struct perf_debuginfod debuginfod; member
2923 rec->debuginfod.urls = strdup(value); in perf_record_config()
2924 if (!rec->debuginfod.urls) in perf_record_config()
2926 rec->debuginfod.set = true; in perf_record_config()
3513 OPT_STRING_OPTARG_SET(0, "debuginfod", &record.debuginfod.urls,
3514 &record.debuginfod.set, "debuginfod urls",
3964 perf_debuginfod_setup(&record.debuginfod); in cmd_record()
/openbmc/linux/tools/perf/Documentation/
H A Dperf-buildid-cache.txt77 --debuginfod[=URLs]::
78 Specify debuginfod URL to be used when retrieving perf.data binaries,
81 buildid-cache.debuginfod=http://192.168.122.174:8002
H A Dperf-config.txt240 buildid-cache.debuginfod=URLs
241 Specify debuginfod URLs to be used when retrieving perf.data binaries,
244 buildid-cache.debuginfod=http://192.168.122.174:8002
593 record.debuginfod::
594 Specify debuginfod URL to be used when cacheing perf.data binaries,
H A Dperf-record.txt805 --debuginfod[=URLs]::
806 Specify debuginfod URL to be used when cacheing perf.data binaries,
/openbmc/openbmc/poky/meta/recipes-devtools/elfutils/files/
H A D0001-dso-link-change.patch36 libdebuginfod = ../debuginfod/libdebuginfod.so
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Ddefault-distrovars.inc29 DISTRO_FEATURES_DEFAULT ?= "acl alsa bluetooth debuginfod ext2 ipv4 ipv6 pcmcia usbgadget usbhost w…
/openbmc/openbmc/poky/documentation/dev-manual/
H A Ddebugging.rst923 methods you can use: running a debuginfod server and using gdbserver.
925 Using the debuginfod server method
928 ``debuginfod`` from ``elfutils`` is a way to distribute ``debuginfo`` files.
929 Running a ``debuginfod`` server makes debug symbols readily available,
934 To run a ``debuginfod`` server, you need to do the following:
936 - Ensure that ``debuginfod`` is present in :term:`DISTRO_FEATURES`
940 DISTRO_FEATURES:append = " debuginfod"
943 and enables ``debuginfod`` support in clients (at the moment, ``gdb`` and ``binutils``).
945 - Run the following commands to launch the ``debuginfod`` server on the host::
947 $ oe-debuginfod
[all …]
/openbmc/openbmc/poky/documentation/ref-manual/
H A Dfeatures.rst143 - *debuginfod:* Include support for getting ELF debugging information through
144 a :ref:`debuginfod <dev-manual/debugging:using the debuginfod server method>`
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.3.1.rst81 - oeqa/selftest/debuginfod: improve selftest
H A Drelease-notes-5.0.2.rst102 - oeqa/selftest/debuginfod: use localpkgfeed to speed server startup
H A Drelease-notes-4.1.3.rst138 - oeqa/selftest/debuginfod: improve testcase
H A Drelease-notes-5.1.rst135 - ``oe-debuginfod``: add parameter "-d" to store debuginfod files in project
H A Drelease-notes-3.4.rst17 - debuginfod support now enabled by default
/openbmc/openbmc/poky/meta/recipes-devtools/valgrind/
H A Dvalgrind_3.23.0.bb228 ${D}${PTEST_PATH}/memcheck/tests/linux/debuginfod-check.vgtest
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/
H A D0008-Use-libtool-2.4.patch2069 --with-debuginfod Enable debuginfo lookups with debuginfod

12