summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)