xref: /OK3568_Linux_fs/yocto/scripts/oe-debuginfod (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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    subprocess.call(['bitbake', '-c', 'addto_recipe_sysroot', 'elfutils-native'])
24
25    subprocess.call(['oe-run-native', 'elfutils-native', 'debuginfod', '--verbose', '-R', '-U', feed_dir])
26    print("\nTo use the debuginfod server please ensure that this variable PACKAGECONFIG:pn-elfutils-native = \"debuginfod libdebuginfod\" is set in the local.conf")
27