summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDorinda <dorindabassey@gmail.com>2021-03-01 15:42:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-02 20:39:35 +0000
commit5fc2c2ea51bcd7a6d94448b4e9fd67aed9720c29 (patch)
tree5b8fc33f3ddee8dd8552d7a776ced5c53356e362 /scripts
parent3ca5157080c89dc95a9b438d33d55940c34dcb4d (diff)
downloadpoky-5fc2c2ea51bcd7a6d94448b4e9fd67aed9720c29.tar.gz
scripts/oe-debuginfod: script that fetches package manager directory
Added a script that fetches the package manager directory and runs the elfutils-native debuginfod on DEPLOY_DIR Added a check to ensure that PACKAGECONFIG options is set in local.conf (From OE-Core rev: 410083f93e2c986247cf3a2ff5050847e10cf359) Signed-off-by: Dorinda Bassey <dorindabassey@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-debuginfod31
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/oe-debuginfod b/scripts/oe-debuginfod
new file mode 100755
index 0000000000..967dd5807c
--- /dev/null
+++ b/scripts/oe-debuginfod
@@ -0,0 +1,31 @@
1#!/usr/bin/env python3
2#
3# SPDX-License-Identifier: MIT
4#
5
6import os
7import sys
8scripts_path = os.path.dirname(os.path.realpath(__file__))
9lib_path = scripts_path + "/lib"
10sys.path.insert(0, lib_path)
11import scriptpath
12scriptpath.add_bitbake_lib_path()
13
14import bb.tinfoil
15import subprocess
16
17if __name__ == "__main__":
18 with bb.tinfoil.Tinfoil() as tinfoil:
19 tinfoil.prepare(config_only=True)
20 package_classes_var = "DEPLOY_DIR_" + tinfoil.config_data.getVar("PACKAGE_CLASSES").split()[0].replace("package_", "").upper()
21 feed_dir = tinfoil.config_data.getVar(package_classes_var, expand=True)
22
23 try:
24 if package_classes_var == "DEPLOY_DIR_RPM":
25 subprocess.check_output(subprocess.run(['oe-run-native', 'elfutils-native', 'debuginfod', '--verbose', '-R', feed_dir]))
26 else:
27 subprocess.check_output(subprocess.run(['oe-run-native', 'elfutils-native', 'debuginfod', '--verbose', '-U', feed_dir]))
28 except subprocess.CalledProcessError:
29 print("\nTo use the debuginfod server Please ensure that this variable PACKAGECONFIG_pn-elfutils-native = \"debuginfod libdebuginfod\" is set in the local.conf")
30 except KeyboardInterrupt:
31 sys.exit(1)