Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | # |
| 3 | # SPDX-License-Identifier: MIT |
| 4 | # |
| 5 | |
| 6 | import os |
| 7 | import sys |
| 8 | scripts_path = os.path.dirname(os.path.realpath(__file__)) |
| 9 | lib_path = scripts_path + "/lib" |
| 10 | sys.path.insert(0, lib_path) |
| 11 | import scriptpath |
| 12 | scriptpath.add_bitbake_lib_path() |
| 13 | |
| 14 | import bb.tinfoil |
| 15 | import subprocess |
| 16 | |
| 17 | if __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) |