cftc@cftc-VMware-Virtual-Platform:~/桌面$ docker run -it --privileged=true --network host --name gky_2509 --env LANG=C.UTF-8 --env LC_ALL=C.UTF-8 --mount type=bind,source=/home/cftc/gky_2509,target=/home/workspace swr.cn-north-4.myhuaweicloud.com/openubmc/ubuntu:24.04.2_25.09 /bin/bash root@docker-desktop:/# pas passwd paste root@docker-desktop:/# passwd root New password: Retype new password: passwd: password updated successfully root@docker-desktop:/# cd /home/workspace/ root@docker-desktop:/home/workspace# ls root@docker-desktop:/home/workspace# git clone https://gitcode.com/openUBMC/manifest.git Cloning into 'manifest'... remote: Enumerating objects: 3911, done. remote: Counting objects: 100% (1834/1834), done. remote: Compressing objects: 100% (481/481), done. remote: Total 3911 (delta 1768), reused 1353 (delta 1353), pack-reused 2077 (from 1) Receiving objects: 100% (3911/3911), 760.00 KiB | 3.42 MiB/s, done. Resolving deltas: 100% (2420/2420), done. root@docker-desktop:/home/workspace# git clone https://gitcode.com/openUBMC/bingo.git Cloning into 'bingo'... remote: Enumerating objects: 3485, done. remote: Counting objects: 100% (862/862), done. remote: Compressing objects: 100% (204/204), done. remote: Total 3485 (delta 779), reused 671 (delta 658), pack-reused 2623 (from 1) Receiving objects: 100% (3485/3485), 1.47 MiB | 4.46 MiB/s, done. Resolving deltas: 100% (2237/2237), done. root@docker-desktop:/home/workspace# cd bingo/ root@docker-desktop:/home/workspace/bingo# git branch -a * main remotes/origin/HEAD -> origin/main remotes/origin/br_release_openUBMC2506_20250930 remotes/origin/br_release_openUBMC2509_20251230 remotes/origin/br_release_openUBMC2512_20261231_LTS remotes/origin/main root@docker-desktop:/home/workspace/bingo# git checkout br_release_openUBMC2509_20251230 branch 'br_release_openUBMC2509_20251230' set up to track 'origin/br_release_openUBMC2509_20251230'. Switched to a new branch 'br_release_openUBMC2509_20251230' root@docker-desktop:/home/workspace/bingo# git branch -a * br_release_openUBMC2509_20251230 main remotes/origin/HEAD -> origin/main remotes/origin/br_release_openUBMC2506_20250930 remotes/origin/br_release_openUBMC2509_20251230 remotes/origin/br_release_openUBMC2512_20261231_LTS remotes/origin/main root@docker-desktop:/home/workspace/bingo# chmod +x install_local.sh root@docker-desktop:/home/workspace/bingo# ./install_local.sh Writing to /root/.config/pip/pip.conf running bdist_wheel running build running build_py creating build creating build/lib creating build/lib/bmcgo copying bmcgo/logger.py -> build/lib/bmcgo copying bmcgo/worker.py -> build/lib/bmcgo copying bmcgo/misc.py -> build/lib/bmcgo copying bmcgo/errors.py -> build/lib/bmcgo copying bmcgo/frame.py -> build/lib/bmcgo copying bmcgo/bmcgo.py -> build/lib/bmcgo copying bmcgo/bmcgo_config.py -> build/lib/bmcgo copying bmcgo/__init__.py -> build/lib/bmcgo running egg_info creating openubmc_bingo.egg-info writing openubmc_bingo.egg-info/PKG-INFO writing dependency_links to openubmc_bingo.egg-info/dependency_links.txt writing entry points to openubmc_bingo.egg-info/entry_points.txt writing requirements to openubmc_bingo.egg-info/requires.txt writing top-level names to openubmc_bingo.egg-info/top_level.txt writing manifest file 'openubmc_bingo.egg-info/SOURCES.txt' reading manifest file 'openubmc_bingo.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'openubmc_bingo.egg-info/SOURCES.txt' /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.cli' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.cli' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.cli' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.cli' to be distributed and are already explicitly excluding 'bmcgo.cli' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen' to be distributed and are already explicitly excluding 'bmcgo.codegen' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.c' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.c' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.c' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.c' to be distributed and are already explicitly excluding 'bmcgo.codegen.c' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.c.template' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.c.template' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.c.template' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.c.template' to be distributed and are already explicitly excluding 'bmcgo.codegen.c.template' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.proto' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.proto' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.proto' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.proto' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.proto' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.script' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.script' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.script' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.script' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.script' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.script.dto' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.script.dto' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.script.dto' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.script.dto' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.script.dto' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.script.loader' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.script.loader' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.script.loader' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.script.loader' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.script.loader' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.script.render_utils' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.script.render_utils' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.script.render_utils' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.script.render_utils' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.script.render_utils' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.apps' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.apps' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.apps' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.apps' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.apps' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.apps.utils' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.apps.utils' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.apps.utils' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.apps.utils' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.apps.utils' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.mds' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.mds' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.mds' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.mds' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.mds' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.src.lualib' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.src.lualib' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.src.lualib' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.src.lualib' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.src.lualib' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.src.service' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.src.service' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.src.service' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.src.service' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.src.service' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.test.integration' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.test.integration' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.test.integration' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.test.integration' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.test.integration' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.test.unit' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.test.unit' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.test.unit' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.test.unit' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.test.unit' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.templates.new_app.user_conf.rootfs.etc.systemd.system' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.templates.new_app.user_conf.rootfs.etc.systemd.system' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.templates.new_app.user_conf.rootfs.etc.systemd.system' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.templates.new_app.user_conf.rootfs.etc.systemd.system' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.templates.new_app.user_conf.rootfs.etc.systemd.system' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.v1.script' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.v1.script' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.v1.script' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.v1.script' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.v1.script' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.v1.script.render_utils' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.v1.script.render_utils' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.v1.script.render_utils' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.v1.script.render_utils' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.v1.script.render_utils' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.v1.templates.apps' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.v1.templates.apps' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.v1.templates.apps' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.v1.templates.apps' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.v1.templates.apps' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.codegen.lua.v1.templates.apps.utils' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.codegen.lua.v1.templates.apps.utils' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.codegen.lua.v1.templates.apps.utils' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.codegen.lua.v1.templates.apps.utils' to be distributed and are already explicitly excluding 'bmcgo.codegen.lua.v1.templates.apps.utils' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.component' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.component' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.component' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.component' to be distributed and are already explicitly excluding 'bmcgo.component' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.component.analysis' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.component.analysis' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.component.analysis' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.component.analysis' to be distributed and are already explicitly excluding 'bmcgo.component.analysis' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.component.coverage' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.component.coverage' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.component.coverage' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.component.coverage' to be distributed and are already explicitly excluding 'bmcgo.component.coverage' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.component.template' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.component.template' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.component.template' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.component.template' to be distributed and are already explicitly excluding 'bmcgo.component.template' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.component.template_v2' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.component.template_v2' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.component.template_v2' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.component.template_v2' to be distributed and are already explicitly excluding 'bmcgo.component.template_v2' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.functional' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.functional' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.functional' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.functional' to be distributed and are already explicitly excluding 'bmcgo.functional' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.ipmigen' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.ipmigen' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.ipmigen' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.ipmigen' to be distributed and are already explicitly excluding 'bmcgo.ipmigen' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.ipmigen.template' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.ipmigen.template' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.ipmigen.template' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.ipmigen.template' to be distributed and are already explicitly excluding 'bmcgo.ipmigen.template' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.target' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.target' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.target' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.target' to be distributed and are already explicitly excluding 'bmcgo.target' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.tasks' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.tasks' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.tasks' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.tasks' to be distributed and are already explicitly excluding 'bmcgo.tasks' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.tasks.conan' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.tasks.conan' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.tasks.conan' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.tasks.conan' to be distributed and are already explicitly excluding 'bmcgo.tasks.conan' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.utils' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.utils' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.utils' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.utils' to be distributed and are already explicitly excluding 'bmcgo.utils' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.utils.installations' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.utils.installations' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.utils.installations' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.utils.installations' to be distributed and are already explicitly excluding 'bmcgo.utils.installations' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.utils.installations.install_plans' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.utils.installations.install_plans' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.utils.installations.install_plans' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.utils.installations.install_plans' to be distributed and are already explicitly excluding 'bmcgo.utils.installations.install_plans' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3/dist-packages/setuptools/command/build_py.py:204: _Warning: Package 'bmcgo.utils.installations.installers' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'bmcgo.utils.installations.installers' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'bmcgo.utils.installations.installers' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'bmcgo.utils.installations.installers' to be distributed and are already explicitly excluding 'bmcgo.utils.installations.installers' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) creating build/lib/bmcgo/cli copying bmcgo/cli/__init__.py -> build/lib/bmcgo/cli copying bmcgo/cli/cli.py -> build/lib/bmcgo/cli copying bmcgo/cli/config.conan2.yaml -> build/lib/bmcgo/cli copying bmcgo/cli/config.yaml -> build/lib/bmcgo/cli creating build/lib/bmcgo/codegen copying bmcgo/codegen/__init__.py -> build/lib/bmcgo/codegen creating build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/__init__.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/annotation.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/argument.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/codegen.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/comment.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/ctype_defination.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/helper.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/interface.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/method.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/property.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/renderer.py -> build/lib/bmcgo/codegen/c copying bmcgo/codegen/c/signal.py -> build/lib/bmcgo/codegen/c creating build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/client.c.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/client.h.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/interface.c.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/interface.introspect.xml.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/micro_component.c.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/public.c.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/public.h.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/server.c.mako -> build/lib/bmcgo/codegen/c/template copying bmcgo/codegen/c/template/server.h.mako -> build/lib/bmcgo/codegen/c/template creating build/lib/bmcgo/codegen/lua copying bmcgo/codegen/lua/.lua-format -> build/lib/bmcgo/codegen/lua copying bmcgo/codegen/lua/Makefile -> build/lib/bmcgo/codegen/lua copying bmcgo/codegen/lua/__init__.py -> build/lib/bmcgo/codegen/lua copying bmcgo/codegen/lua/codegen.py -> build/lib/bmcgo/codegen/lua creating build/lib/bmcgo/codegen/lua/proto copying bmcgo/codegen/lua/proto/Makefile -> build/lib/bmcgo/codegen/lua/proto copying bmcgo/codegen/lua/proto/ipmi_types.proto -> build/lib/bmcgo/codegen/lua/proto copying bmcgo/codegen/lua/proto/types.proto -> build/lib/bmcgo/codegen/lua/proto creating build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/base.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/check_intfs.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/factory.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_db_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_depends.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_entry.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_feature_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_historical_local_db_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_intf_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_intf_rpc_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_ipmi_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_mdb_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_rpc_msg_json.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/gen_schema.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/ipmi_types_pb2.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/lua_format.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/mdb_register.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/mds_util.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/merge_model.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/merge_proto_algo.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/model_consistency_check.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/proto_loader.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/proto_plugin.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/redfish_source_tree.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/template.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/types_pb2.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/utils.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/validate.py -> build/lib/bmcgo/codegen/lua/script copying bmcgo/codegen/lua/script/yaml_to_json.py -> build/lib/bmcgo/codegen/lua/script creating build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/__init__.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/exception.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/kepler_abstract.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/options.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/print_simple.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/redfish_api.py -> build/lib/bmcgo/codegen/lua/script/dto copying bmcgo/codegen/lua/script/dto/url_route.py -> build/lib/bmcgo/codegen/lua/script/dto creating build/lib/bmcgo/codegen/lua/script/loader copying bmcgo/codegen/lua/script/loader/__init__.py -> build/lib/bmcgo/codegen/lua/script/loader copying bmcgo/codegen/lua/script/loader/file_utils.py -> build/lib/bmcgo/codegen/lua/script/loader copying bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py -> build/lib/bmcgo/codegen/lua/script/loader copying bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py -> build/lib/bmcgo/codegen/lua/script/loader copying bmcgo/codegen/lua/script/loader/redfish_loader.py -> build/lib/bmcgo/codegen/lua/script/loader creating build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/__init__.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/client_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/controller_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/db_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/error_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/ipmi_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/mdb_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/message_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/messages_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/model_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/old_model_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/plugin_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/redfish_proto.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/request_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/service_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/utils_message_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils copying bmcgo/codegen/lua/script/render_utils/validate_lua.py -> build/lib/bmcgo/codegen/lua/script/render_utils creating build/lib/bmcgo/codegen/lua/templates copying bmcgo/codegen/lua/templates/Makefile -> build/lib/bmcgo/codegen/lua/templates copying bmcgo/codegen/lua/templates/errors.lua.mako -> build/lib/bmcgo/codegen/lua/templates copying bmcgo/codegen/lua/templates/messages.lua.mako -> build/lib/bmcgo/codegen/lua/templates creating build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/Makefile -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/app.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/class.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/client.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/controller.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/datas.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/db.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/entry.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/feature.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/generate_route.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/impl_feature.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/ipmi.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/ipmi_cmd.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/ipmi_message.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/local_db.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/main.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/mc.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/mdb.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/mdb_interface.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/message.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/model.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/orm_classes.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/plugin.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/redfish.proto.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/service.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps copying bmcgo/codegen/lua/templates/apps/signal_listen.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps creating build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/default_intf.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/enum.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/imports.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/mdb_intf.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/mdb_obj.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/message.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/request.lua.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils copying bmcgo/codegen/lua/templates/apps/utils/validate.mako -> build/lib/bmcgo/codegen/lua/templates/apps/utils creating build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/.clang-format.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/.gitignore.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/CHANGELOG.md.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/CMakeLists.txt.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/Makefile.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/README.md.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/conanfile.py.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/config.cfg.mako -> build/lib/bmcgo/codegen/lua/templates/new_app copying bmcgo/codegen/lua/templates/new_app/permissions.ini.mako -> build/lib/bmcgo/codegen/lua/templates/new_app creating build/lib/bmcgo/codegen/lua/templates/new_app/mds copying bmcgo/codegen/lua/templates/new_app/mds/model.json.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/mds copying bmcgo/codegen/lua/templates/new_app/mds/service.json.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/mds creating build/lib/bmcgo/codegen/lua/templates/new_app/src creating build/lib/bmcgo/codegen/lua/templates/new_app/src/lualib copying bmcgo/codegen/lua/templates/new_app/src/lualib/${project_name}_app.lua.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/src/lualib creating build/lib/bmcgo/codegen/lua/templates/new_app/src/service copying bmcgo/codegen/lua/templates/new_app/src/service/main.lua.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/src/service creating build/lib/bmcgo/codegen/lua/templates/new_app/test creating build/lib/bmcgo/codegen/lua/templates/new_app/test/integration copying bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.conf.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/test/integration copying bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/test/integration creating build/lib/bmcgo/codegen/lua/templates/new_app/test/unit copying bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/test/unit creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system copying bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako -> build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system creating build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants copying bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link -> build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants creating build/lib/bmcgo/codegen/lua/v1 creating build/lib/bmcgo/codegen/lua/v1/script copying bmcgo/codegen/lua/v1/script/gen_schema.py -> build/lib/bmcgo/codegen/lua/v1/script creating build/lib/bmcgo/codegen/lua/v1/script/render_utils copying bmcgo/codegen/lua/v1/script/render_utils/client_lua.py -> build/lib/bmcgo/codegen/lua/v1/script/render_utils copying bmcgo/codegen/lua/v1/script/render_utils/db_lua.py -> build/lib/bmcgo/codegen/lua/v1/script/render_utils copying bmcgo/codegen/lua/v1/script/render_utils/model_lua.py -> build/lib/bmcgo/codegen/lua/v1/script/render_utils creating build/lib/bmcgo/codegen/lua/v1/templates creating build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/client.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/db.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/message.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/model.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps copying bmcgo/codegen/lua/v1/templates/apps/service.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps creating build/lib/bmcgo/codegen/lua/v1/templates/apps/utils copying bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps/utils copying bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako -> build/lib/bmcgo/codegen/lua/v1/templates/apps/utils creating build/lib/bmcgo/component copying bmcgo/component/__init__.py -> build/lib/bmcgo/component copying bmcgo/component/build.py -> build/lib/bmcgo/component copying bmcgo/component/component_dt_version_parse.py -> build/lib/bmcgo/component copying bmcgo/component/component_helper.py -> build/lib/bmcgo/component copying bmcgo/component/deploy.py -> build/lib/bmcgo/component copying bmcgo/component/gen.py -> build/lib/bmcgo/component copying bmcgo/component/package_info.py -> build/lib/bmcgo/component copying bmcgo/component/test.py -> build/lib/bmcgo/component creating build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/analysis.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/build_deps.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/data_deps.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/dep-rules.json -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/dep_node.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/intf_deps.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/intf_validation.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/rule.py -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/smc_dfx_whitelist.json -> build/lib/bmcgo/component/analysis copying bmcgo/component/analysis/sr_validation.py -> build/lib/bmcgo/component/analysis creating build/lib/bmcgo/component/coverage copying bmcgo/component/coverage/__init__.py -> build/lib/bmcgo/component/coverage copying bmcgo/component/coverage/c_incremental_cov_report.template -> build/lib/bmcgo/component/coverage copying bmcgo/component/coverage/incremental_cov.py -> build/lib/bmcgo/component/coverage creating build/lib/bmcgo/component/template copying bmcgo/component/template/conanbase.py.mako -> build/lib/bmcgo/component/template copying bmcgo/component/template/conanfile.deploy.py.mako -> build/lib/bmcgo/component/template creating build/lib/bmcgo/component/template_v2 copying bmcgo/component/template_v2/conanbase.py.mako -> build/lib/bmcgo/component/template_v2 copying bmcgo/component/template_v2/conanfile.deploy.py.mako -> build/lib/bmcgo/component/template_v2 creating build/lib/bmcgo/functional copying bmcgo/functional/__init__.py -> build/lib/bmcgo/functional copying bmcgo/functional/analysis.py -> build/lib/bmcgo/functional copying bmcgo/functional/bmc_studio_action.py -> build/lib/bmcgo/functional copying bmcgo/functional/check.py -> build/lib/bmcgo/functional copying bmcgo/functional/conan_index_build.py -> build/lib/bmcgo/functional copying bmcgo/functional/config.py -> build/lib/bmcgo/functional copying bmcgo/functional/csr_build.py -> build/lib/bmcgo/functional copying bmcgo/functional/deploy.py -> build/lib/bmcgo/functional copying bmcgo/functional/diff.py -> build/lib/bmcgo/functional copying bmcgo/functional/fetch.py -> build/lib/bmcgo/functional copying bmcgo/functional/full_component.py -> build/lib/bmcgo/functional copying bmcgo/functional/git_history.py -> build/lib/bmcgo/functional copying bmcgo/functional/json_check.py -> build/lib/bmcgo/functional copying bmcgo/functional/maintain.py -> build/lib/bmcgo/functional copying bmcgo/functional/new.py -> build/lib/bmcgo/functional copying bmcgo/functional/schema_valid.py -> build/lib/bmcgo/functional copying bmcgo/functional/simple_sign.py -> build/lib/bmcgo/functional copying bmcgo/functional/upgrade.py -> build/lib/bmcgo/functional creating build/lib/bmcgo/ipmigen copying bmcgo/ipmigen/__init__.py -> build/lib/bmcgo/ipmigen copying bmcgo/ipmigen/ctype_defination.py -> build/lib/bmcgo/ipmigen copying bmcgo/ipmigen/ipmigen.py -> build/lib/bmcgo/ipmigen creating build/lib/bmcgo/ipmigen/template copying bmcgo/ipmigen/template/cmd.c.mako -> build/lib/bmcgo/ipmigen/template copying bmcgo/ipmigen/template/ipmi.c.mako -> build/lib/bmcgo/ipmigen/template copying bmcgo/ipmigen/template/ipmi.h.mako -> build/lib/bmcgo/ipmigen/template creating build/lib/bmcgo/target copying bmcgo/target/app.yml -> build/lib/bmcgo/target copying bmcgo/target/install_sdk.yml -> build/lib/bmcgo/target copying bmcgo/target/personal.yml -> build/lib/bmcgo/target copying bmcgo/target/publish.yml -> build/lib/bmcgo/target creating build/lib/bmcgo/tasks copying bmcgo/tasks/__init__.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/download_buildtools_hm.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/misc.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_build_conan.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_build_rootfs_img.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_build_wbd_up.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_buildgppbin.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_buildhpm_ext4.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_create_interface_config.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_download_buildtools.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_download_dependency.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_hpm_envir_prepare.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_packet_to_supporte.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_prepare.py -> build/lib/bmcgo/tasks copying bmcgo/tasks/task_sign_and_pack_hpm.py -> build/lib/bmcgo/tasks creating build/lib/bmcgo/tasks/conan copying bmcgo/tasks/conan/__init__.py -> build/lib/bmcgo/tasks/conan copying bmcgo/tasks/conan/conanfile.py -> build/lib/bmcgo/tasks/conan creating build/lib/bmcgo/utils copying bmcgo/utils/__init__.py -> build/lib/bmcgo/utils copying bmcgo/utils/basic_enums.py -> build/lib/bmcgo/utils copying bmcgo/utils/buffer.py -> build/lib/bmcgo/utils copying bmcgo/utils/build_conans.py -> build/lib/bmcgo/utils copying bmcgo/utils/combine_json_schemas.py -> build/lib/bmcgo/utils copying bmcgo/utils/component_post.py -> build/lib/bmcgo/utils copying bmcgo/utils/component_version_check.py -> build/lib/bmcgo/utils copying bmcgo/utils/config.py -> build/lib/bmcgo/utils copying bmcgo/utils/fetch_component_code.py -> build/lib/bmcgo/utils copying bmcgo/utils/install_manager.py -> build/lib/bmcgo/utils copying bmcgo/utils/json_validator.py -> build/lib/bmcgo/utils copying bmcgo/utils/mapping_config_patch.py -> build/lib/bmcgo/utils copying bmcgo/utils/merge_csr.py -> build/lib/bmcgo/utils copying bmcgo/utils/perf_analysis.py -> build/lib/bmcgo/utils copying bmcgo/utils/tools.py -> build/lib/bmcgo/utils creating build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/README.md -> build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/__init__.py -> build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/base_installer.py -> build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/install_consts.py -> build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/install_workflow.py -> build/lib/bmcgo/utils/installations copying bmcgo/utils/installations/version_util.py -> build/lib/bmcgo/utils/installations creating build/lib/bmcgo/utils/installations/install_plans copying bmcgo/utils/installations/install_plans/bingo.yml -> build/lib/bmcgo/utils/installations/install_plans copying bmcgo/utils/installations/install_plans/qemu.yml -> build/lib/bmcgo/utils/installations/install_plans copying bmcgo/utils/installations/install_plans/studio.yml -> build/lib/bmcgo/utils/installations/install_plans creating build/lib/bmcgo/utils/installations/installers copying bmcgo/utils/installations/installers/apt_installer.py -> build/lib/bmcgo/utils/installations/installers copying bmcgo/utils/installations/installers/pip_installer.py -> build/lib/bmcgo/utils/installations/installers /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. !! ******************************************************************************** Please avoid running ``setup.py`` directly. Instead, use pypa/build, pypa/installer or other standards-based tools. See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. ******************************************************************************** !! self.initialize_options() installing to build/bdist.linux-x86_64/wheel running install running install_lib creating build/bdist.linux-x86_64 creating build/bdist.linux-x86_64/wheel creating build/bdist.linux-x86_64/wheel/bmcgo creating build/bdist.linux-x86_64/wheel/bmcgo/component creating build/bdist.linux-x86_64/wheel/bmcgo/component/coverage copying build/lib/bmcgo/component/coverage/incremental_cov.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/coverage copying build/lib/bmcgo/component/coverage/c_incremental_cov_report.template -> build/bdist.linux-x86_64/wheel/bmcgo/component/coverage copying build/lib/bmcgo/component/coverage/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/coverage copying build/lib/bmcgo/component/component_helper.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/component/gen.py -> build/bdist.linux-x86_64/wheel/bmcgo/component creating build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/rule.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/intf_validation.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/analysis.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/data_deps.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/smc_dfx_whitelist.json -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/build_deps.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/sr_validation.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/dep_node.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/dep-rules.json -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/analysis/intf_deps.py -> build/bdist.linux-x86_64/wheel/bmcgo/component/analysis copying build/lib/bmcgo/component/component_dt_version_parse.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/component/test.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/component/package_info.py -> build/bdist.linux-x86_64/wheel/bmcgo/component creating build/bdist.linux-x86_64/wheel/bmcgo/component/template_v2 copying build/lib/bmcgo/component/template_v2/conanfile.deploy.py.mako -> build/bdist.linux-x86_64/wheel/bmcgo/component/template_v2 copying build/lib/bmcgo/component/template_v2/conanbase.py.mako -> build/bdist.linux-x86_64/wheel/bmcgo/component/template_v2 creating build/bdist.linux-x86_64/wheel/bmcgo/component/template copying build/lib/bmcgo/component/template/conanfile.deploy.py.mako -> build/bdist.linux-x86_64/wheel/bmcgo/component/template copying build/lib/bmcgo/component/template/conanbase.py.mako -> build/bdist.linux-x86_64/wheel/bmcgo/component/template copying build/lib/bmcgo/component/deploy.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/component/build.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/component/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/component copying build/lib/bmcgo/logger.py -> build/bdist.linux-x86_64/wheel/bmcgo copying build/lib/bmcgo/worker.py -> build/bdist.linux-x86_64/wheel/bmcgo copying build/lib/bmcgo/misc.py -> build/bdist.linux-x86_64/wheel/bmcgo copying build/lib/bmcgo/errors.py -> build/bdist.linux-x86_64/wheel/bmcgo copying build/lib/bmcgo/frame.py -> build/bdist.linux-x86_64/wheel/bmcgo creating build/bdist.linux-x86_64/wheel/bmcgo/target copying build/lib/bmcgo/target/publish.yml -> build/bdist.linux-x86_64/wheel/bmcgo/target copying build/lib/bmcgo/target/install_sdk.yml -> build/bdist.linux-x86_64/wheel/bmcgo/target copying build/lib/bmcgo/target/personal.yml -> build/bdist.linux-x86_64/wheel/bmcgo/target copying build/lib/bmcgo/target/app.yml -> build/bdist.linux-x86_64/wheel/bmcgo/target creating build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_prepare.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_download_dependency.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_create_interface_config.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_build_rootfs_img.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_sign_and_pack_hpm.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_hpm_envir_prepare.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_packet_to_supporte.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks creating build/bdist.linux-x86_64/wheel/bmcgo/tasks/conan copying build/lib/bmcgo/tasks/conan/conanfile.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks/conan copying build/lib/bmcgo/tasks/conan/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks/conan copying build/lib/bmcgo/tasks/misc.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_build_wbd_up.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_buildhpm_ext4.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_buildgppbin.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_build_conan.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/download_buildtools_hm.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/task_download_buildtools.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks copying build/lib/bmcgo/tasks/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/tasks creating build/bdist.linux-x86_64/wheel/bmcgo/cli copying build/lib/bmcgo/cli/config.conan2.yaml -> build/bdist.linux-x86_64/wheel/bmcgo/cli copying build/lib/bmcgo/cli/cli.py -> build/bdist.linux-x86_64/wheel/bmcgo/cli copying build/lib/bmcgo/cli/config.yaml -> build/bdist.linux-x86_64/wheel/bmcgo/cli copying build/lib/bmcgo/cli/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/cli creating build/bdist.linux-x86_64/wheel/bmcgo/codegen creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua copying build/lib/bmcgo/codegen/lua/.lua-format -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/utils.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/loader/file_utils.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/loader/redfish_loader.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/loader/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/loader copying build/lib/bmcgo/codegen/lua/script/merge_proto_algo.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/mds_util.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/template.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_schema.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/controller_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/model_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/old_model_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/messages_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/redfish_proto.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/ipmi_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/db_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/mdb_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/error_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/plugin_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/message_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/utils_message_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/request_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/client_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/validate_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/service_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/render_utils/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/render_utils copying build/lib/bmcgo/codegen/lua/script/merge_model.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_depends.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/check_intfs.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/mdb_register.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_feature_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/ipmi_types_pb2.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_ipmi_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/validate.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_mdb_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/options.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/exception.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/print_simple.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/redfish_api.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/url_route.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/kepler_abstract.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/dto/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script/dto copying build/lib/bmcgo/codegen/lua/script/gen_db_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/proto_plugin.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/proto_loader.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/yaml_to_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/factory.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_entry.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/lua_format.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/redfish_source_tree.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_intf_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_historical_local_db_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_intf_rpc_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/types_pb2.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/gen_rpc_msg_json.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/model_consistency_check.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/script/base.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/script copying build/lib/bmcgo/codegen/lua/Makefile -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua copying build/lib/bmcgo/codegen/lua/codegen.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1 creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script copying build/lib/bmcgo/codegen/lua/v1/script/gen_schema.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script/render_utils copying build/lib/bmcgo/codegen/lua/v1/script/render_utils/model_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script/render_utils copying build/lib/bmcgo/codegen/lua/v1/script/render_utils/db_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script/render_utils copying build/lib/bmcgo/codegen/lua/v1/script/render_utils/client_lua.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/script/render_utils creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/db.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/client.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/model.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/message.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps copying build/lib/bmcgo/codegen/lua/v1/templates/apps/service.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps/utils copying build/lib/bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps/utils copying build/lib/bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/v1/templates/apps/utils creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates copying build/lib/bmcgo/codegen/lua/templates/errors.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates copying build/lib/bmcgo/codegen/lua/templates/messages.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/mds copying build/lib/bmcgo/codegen/lua/templates/new_app/mds/model.json.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/mds copying build/lib/bmcgo/codegen/lua/templates/new_app/mds/service.json.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/mds creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/src creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/src/service copying build/lib/bmcgo/codegen/lua/templates/new_app/src/service/main.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/src/service creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/src/lualib copying build/lib/bmcgo/codegen/lua/templates/new_app/src/lualib/${project_name}_app.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/src/lualib copying build/lib/bmcgo/codegen/lua/templates/new_app/Makefile.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test/unit copying build/lib/bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test/unit creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test/integration copying build/lib/bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test/integration copying build/lib/bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.conf.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/test/integration copying build/lib/bmcgo/codegen/lua/templates/new_app/conanfile.py.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/permissions.ini.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants copying build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants copying build/lib/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system copying build/lib/bmcgo/codegen/lua/templates/new_app/CMakeLists.txt.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/.gitignore.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/config.cfg.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/.clang-format.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/README.md.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/new_app/CHANGELOG.md.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/new_app copying build/lib/bmcgo/codegen/lua/templates/Makefile -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/db.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/orm_classes.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/local_db.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/redfish.proto.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/main.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/app.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/client.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/entry.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/ipmi_message.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/signal_listen.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/controller.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/impl_feature.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/generate_route.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/Makefile -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/mdb.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/mc.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/class.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/plugin.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/model.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/feature.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/datas.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/message.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/service.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/ipmi.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/mdb_interface.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps copying build/lib/bmcgo/codegen/lua/templates/apps/ipmi_cmd.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/request.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/message.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/enum.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/validate.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/imports.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/mdb_intf.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/default_intf.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils copying build/lib/bmcgo/codegen/lua/templates/apps/utils/mdb_obj.lua.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/templates/apps/utils creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/proto copying build/lib/bmcgo/codegen/lua/proto/ipmi_types.proto -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/proto copying build/lib/bmcgo/codegen/lua/proto/types.proto -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/proto copying build/lib/bmcgo/codegen/lua/proto/Makefile -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua/proto copying build/lib/bmcgo/codegen/lua/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/lua creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/helper.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/comment.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/renderer.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/argument.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/annotation.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/method.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/interface.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/codegen.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/signal.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/property.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c creating build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/public.h.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/server.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/public.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/interface.introspect.xml.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/interface.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/client.h.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/client.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/micro_component.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/template/server.h.mako -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c/template copying build/lib/bmcgo/codegen/c/ctype_defination.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/c/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen/c copying build/lib/bmcgo/codegen/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/codegen copying build/lib/bmcgo/bmcgo.py -> build/bdist.linux-x86_64/wheel/bmcgo copying build/lib/bmcgo/bmcgo_config.py -> build/bdist.linux-x86_64/wheel/bmcgo creating build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/check.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/conan_index_build.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/analysis.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/git_history.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/json_check.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/config.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/csr_build.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/upgrade.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/fetch.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/new.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/full_component.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/schema_valid.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/maintain.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/bmc_studio_action.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/simple_sign.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/diff.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/deploy.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional copying build/lib/bmcgo/functional/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/functional creating build/bdist.linux-x86_64/wheel/bmcgo/ipmigen copying build/lib/bmcgo/ipmigen/ipmigen.py -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen creating build/bdist.linux-x86_64/wheel/bmcgo/ipmigen/template copying build/lib/bmcgo/ipmigen/template/cmd.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen/template copying build/lib/bmcgo/ipmigen/template/ipmi.c.mako -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen/template copying build/lib/bmcgo/ipmigen/template/ipmi.h.mako -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen/template copying build/lib/bmcgo/ipmigen/ctype_defination.py -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen copying build/lib/bmcgo/ipmigen/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/ipmigen creating build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/perf_analysis.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/combine_json_schemas.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/fetch_component_code.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/config.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/tools.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/merge_csr.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/mapping_config_patch.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/install_manager.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils creating build/bdist.linux-x86_64/wheel/bmcgo/utils/installations creating build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/install_plans copying build/lib/bmcgo/utils/installations/install_plans/studio.yml -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/install_plans copying build/lib/bmcgo/utils/installations/install_plans/bingo.yml -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/install_plans copying build/lib/bmcgo/utils/installations/install_plans/qemu.yml -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/install_plans copying build/lib/bmcgo/utils/installations/install_workflow.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations creating build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/installers copying build/lib/bmcgo/utils/installations/installers/pip_installer.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/installers copying build/lib/bmcgo/utils/installations/installers/apt_installer.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations/installers copying build/lib/bmcgo/utils/installations/base_installer.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations copying build/lib/bmcgo/utils/installations/version_util.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations copying build/lib/bmcgo/utils/installations/install_consts.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations copying build/lib/bmcgo/utils/installations/README.md -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations copying build/lib/bmcgo/utils/installations/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils/installations copying build/lib/bmcgo/utils/build_conans.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/component_version_check.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/basic_enums.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/component_post.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/json_validator.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/buffer.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/utils/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo/utils copying build/lib/bmcgo/__init__.py -> build/bdist.linux-x86_64/wheel/bmcgo running install_egg_info Copying openubmc_bingo.egg-info to build/bdist.linux-x86_64/wheel/openubmc_bingo-0.6.51.egg-info running install_scripts creating build/bdist.linux-x86_64/wheel/openubmc_bingo-0.6.51.dist-info/WHEEL creating 'dist/openubmc_bingo-0.6.51-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it adding 'bmcgo/__init__.py' adding 'bmcgo/bmcgo.py' adding 'bmcgo/bmcgo_config.py' adding 'bmcgo/errors.py' adding 'bmcgo/frame.py' adding 'bmcgo/logger.py' adding 'bmcgo/misc.py' adding 'bmcgo/worker.py' adding 'bmcgo/cli/__init__.py' adding 'bmcgo/cli/cli.py' adding 'bmcgo/cli/config.conan2.yaml' adding 'bmcgo/cli/config.yaml' adding 'bmcgo/codegen/__init__.py' adding 'bmcgo/codegen/c/__init__.py' adding 'bmcgo/codegen/c/annotation.py' adding 'bmcgo/codegen/c/argument.py' adding 'bmcgo/codegen/c/codegen.py' adding 'bmcgo/codegen/c/comment.py' adding 'bmcgo/codegen/c/ctype_defination.py' adding 'bmcgo/codegen/c/helper.py' adding 'bmcgo/codegen/c/interface.py' adding 'bmcgo/codegen/c/method.py' adding 'bmcgo/codegen/c/property.py' adding 'bmcgo/codegen/c/renderer.py' adding 'bmcgo/codegen/c/signal.py' adding 'bmcgo/codegen/c/template/client.c.mako' adding 'bmcgo/codegen/c/template/client.h.mako' adding 'bmcgo/codegen/c/template/interface.c.mako' adding 'bmcgo/codegen/c/template/interface.introspect.xml.mako' adding 'bmcgo/codegen/c/template/micro_component.c.mako' adding 'bmcgo/codegen/c/template/public.c.mako' adding 'bmcgo/codegen/c/template/public.h.mako' adding 'bmcgo/codegen/c/template/server.c.mako' adding 'bmcgo/codegen/c/template/server.h.mako' adding 'bmcgo/codegen/lua/.lua-format' adding 'bmcgo/codegen/lua/Makefile' adding 'bmcgo/codegen/lua/__init__.py' adding 'bmcgo/codegen/lua/codegen.py' adding 'bmcgo/codegen/lua/proto/Makefile' adding 'bmcgo/codegen/lua/proto/ipmi_types.proto' adding 'bmcgo/codegen/lua/proto/types.proto' adding 'bmcgo/codegen/lua/script/base.py' adding 'bmcgo/codegen/lua/script/check_intfs.py' adding 'bmcgo/codegen/lua/script/factory.py' adding 'bmcgo/codegen/lua/script/gen_db_json.py' adding 'bmcgo/codegen/lua/script/gen_depends.py' adding 'bmcgo/codegen/lua/script/gen_entry.py' adding 'bmcgo/codegen/lua/script/gen_feature_json.py' adding 'bmcgo/codegen/lua/script/gen_historical_local_db_json.py' adding 'bmcgo/codegen/lua/script/gen_intf_json.py' adding 'bmcgo/codegen/lua/script/gen_intf_rpc_json.py' adding 'bmcgo/codegen/lua/script/gen_ipmi_json.py' adding 'bmcgo/codegen/lua/script/gen_mdb_json.py' adding 'bmcgo/codegen/lua/script/gen_rpc_msg_json.py' adding 'bmcgo/codegen/lua/script/gen_schema.py' adding 'bmcgo/codegen/lua/script/ipmi_types_pb2.py' adding 'bmcgo/codegen/lua/script/lua_format.py' adding 'bmcgo/codegen/lua/script/mdb_register.py' adding 'bmcgo/codegen/lua/script/mds_util.py' adding 'bmcgo/codegen/lua/script/merge_model.py' adding 'bmcgo/codegen/lua/script/merge_proto_algo.py' adding 'bmcgo/codegen/lua/script/model_consistency_check.py' adding 'bmcgo/codegen/lua/script/proto_loader.py' adding 'bmcgo/codegen/lua/script/proto_plugin.py' adding 'bmcgo/codegen/lua/script/redfish_source_tree.py' adding 'bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py' adding 'bmcgo/codegen/lua/script/template.py' adding 'bmcgo/codegen/lua/script/types_pb2.py' adding 'bmcgo/codegen/lua/script/utils.py' adding 'bmcgo/codegen/lua/script/validate.py' adding 'bmcgo/codegen/lua/script/yaml_to_json.py' adding 'bmcgo/codegen/lua/script/dto/__init__.py' adding 'bmcgo/codegen/lua/script/dto/exception.py' adding 'bmcgo/codegen/lua/script/dto/kepler_abstract.py' adding 'bmcgo/codegen/lua/script/dto/options.py' adding 'bmcgo/codegen/lua/script/dto/print_simple.py' adding 'bmcgo/codegen/lua/script/dto/redfish_api.py' adding 'bmcgo/codegen/lua/script/dto/url_route.py' adding 'bmcgo/codegen/lua/script/loader/__init__.py' adding 'bmcgo/codegen/lua/script/loader/file_utils.py' adding 'bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py' adding 'bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py' adding 'bmcgo/codegen/lua/script/loader/redfish_loader.py' adding 'bmcgo/codegen/lua/script/render_utils/__init__.py' adding 'bmcgo/codegen/lua/script/render_utils/client_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/controller_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/db_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/error_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/ipmi_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/mdb_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/message_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/messages_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/model_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/old_model_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/plugin_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/redfish_proto.py' adding 'bmcgo/codegen/lua/script/render_utils/request_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/service_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/utils_message_lua.py' adding 'bmcgo/codegen/lua/script/render_utils/validate_lua.py' adding 'bmcgo/codegen/lua/templates/Makefile' adding 'bmcgo/codegen/lua/templates/errors.lua.mako' adding 'bmcgo/codegen/lua/templates/messages.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/Makefile' adding 'bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk' adding 'bmcgo/codegen/lua/templates/apps/app.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/class.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/client.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/controller.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/datas.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/db.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/entry.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/feature.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/generate_route.mako' adding 'bmcgo/codegen/lua/templates/apps/impl_feature.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/ipmi.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/ipmi_cmd.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/ipmi_message.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/local_db.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/main.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/mc.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/mdb.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/mdb_interface.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/message.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/model.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/orm_classes.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/plugin.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/redfish.proto.mako' adding 'bmcgo/codegen/lua/templates/apps/service.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/signal_listen.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/default_intf.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/enum.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/imports.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/mdb_intf.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/mdb_obj.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/message.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/request.lua.mako' adding 'bmcgo/codegen/lua/templates/apps/utils/validate.mako' adding 'bmcgo/codegen/lua/templates/new_app/.clang-format.mako' adding 'bmcgo/codegen/lua/templates/new_app/.gitignore.mako' adding 'bmcgo/codegen/lua/templates/new_app/CHANGELOG.md.mako' adding 'bmcgo/codegen/lua/templates/new_app/CMakeLists.txt.mako' adding 'bmcgo/codegen/lua/templates/new_app/Makefile.mako' adding 'bmcgo/codegen/lua/templates/new_app/README.md.mako' adding 'bmcgo/codegen/lua/templates/new_app/conanfile.py.mako' adding 'bmcgo/codegen/lua/templates/new_app/config.cfg.mako' adding 'bmcgo/codegen/lua/templates/new_app/permissions.ini.mako' adding 'bmcgo/codegen/lua/templates/new_app/mds/model.json.mako' adding 'bmcgo/codegen/lua/templates/new_app/mds/service.json.mako' adding 'bmcgo/codegen/lua/templates/new_app/src/lualib/${project_name}_app.lua.mako' adding 'bmcgo/codegen/lua/templates/new_app/src/service/main.lua.mako' adding 'bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.conf.mako' adding 'bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.mako' adding 'bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako' adding 'bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako' adding 'bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link' adding 'bmcgo/codegen/lua/v1/script/gen_schema.py' adding 'bmcgo/codegen/lua/v1/script/render_utils/client_lua.py' adding 'bmcgo/codegen/lua/v1/script/render_utils/db_lua.py' adding 'bmcgo/codegen/lua/v1/script/render_utils/model_lua.py' adding 'bmcgo/codegen/lua/v1/templates/apps/client.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/db.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/message.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/model.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/service.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako' adding 'bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako' adding 'bmcgo/component/__init__.py' adding 'bmcgo/component/build.py' adding 'bmcgo/component/component_dt_version_parse.py' adding 'bmcgo/component/component_helper.py' adding 'bmcgo/component/deploy.py' adding 'bmcgo/component/gen.py' adding 'bmcgo/component/package_info.py' adding 'bmcgo/component/test.py' adding 'bmcgo/component/analysis/analysis.py' adding 'bmcgo/component/analysis/build_deps.py' adding 'bmcgo/component/analysis/data_deps.py' adding 'bmcgo/component/analysis/dep-rules.json' adding 'bmcgo/component/analysis/dep_node.py' adding 'bmcgo/component/analysis/intf_deps.py' adding 'bmcgo/component/analysis/intf_validation.py' adding 'bmcgo/component/analysis/rule.py' adding 'bmcgo/component/analysis/smc_dfx_whitelist.json' adding 'bmcgo/component/analysis/sr_validation.py' adding 'bmcgo/component/coverage/__init__.py' adding 'bmcgo/component/coverage/c_incremental_cov_report.template' adding 'bmcgo/component/coverage/incremental_cov.py' adding 'bmcgo/component/template/conanbase.py.mako' adding 'bmcgo/component/template/conanfile.deploy.py.mako' adding 'bmcgo/component/template_v2/conanbase.py.mako' adding 'bmcgo/component/template_v2/conanfile.deploy.py.mako' adding 'bmcgo/functional/__init__.py' adding 'bmcgo/functional/analysis.py' adding 'bmcgo/functional/bmc_studio_action.py' adding 'bmcgo/functional/check.py' adding 'bmcgo/functional/conan_index_build.py' adding 'bmcgo/functional/config.py' adding 'bmcgo/functional/csr_build.py' adding 'bmcgo/functional/deploy.py' adding 'bmcgo/functional/diff.py' adding 'bmcgo/functional/fetch.py' adding 'bmcgo/functional/full_component.py' adding 'bmcgo/functional/git_history.py' adding 'bmcgo/functional/json_check.py' adding 'bmcgo/functional/maintain.py' adding 'bmcgo/functional/new.py' adding 'bmcgo/functional/schema_valid.py' adding 'bmcgo/functional/simple_sign.py' adding 'bmcgo/functional/upgrade.py' adding 'bmcgo/ipmigen/__init__.py' adding 'bmcgo/ipmigen/ctype_defination.py' adding 'bmcgo/ipmigen/ipmigen.py' adding 'bmcgo/ipmigen/template/cmd.c.mako' adding 'bmcgo/ipmigen/template/ipmi.c.mako' adding 'bmcgo/ipmigen/template/ipmi.h.mako' adding 'bmcgo/target/app.yml' adding 'bmcgo/target/install_sdk.yml' adding 'bmcgo/target/personal.yml' adding 'bmcgo/target/publish.yml' adding 'bmcgo/tasks/__init__.py' adding 'bmcgo/tasks/download_buildtools_hm.py' adding 'bmcgo/tasks/misc.py' adding 'bmcgo/tasks/task.py' adding 'bmcgo/tasks/task_build_conan.py' adding 'bmcgo/tasks/task_build_rootfs_img.py' adding 'bmcgo/tasks/task_build_wbd_up.py' adding 'bmcgo/tasks/task_buildgppbin.py' adding 'bmcgo/tasks/task_buildhpm_ext4.py' adding 'bmcgo/tasks/task_create_interface_config.py' adding 'bmcgo/tasks/task_download_buildtools.py' adding 'bmcgo/tasks/task_download_dependency.py' adding 'bmcgo/tasks/task_hpm_envir_prepare.py' adding 'bmcgo/tasks/task_packet_to_supporte.py' adding 'bmcgo/tasks/task_prepare.py' adding 'bmcgo/tasks/task_sign_and_pack_hpm.py' adding 'bmcgo/tasks/conan/__init__.py' adding 'bmcgo/tasks/conan/conanfile.py' adding 'bmcgo/utils/__init__.py' adding 'bmcgo/utils/basic_enums.py' adding 'bmcgo/utils/buffer.py' adding 'bmcgo/utils/build_conans.py' adding 'bmcgo/utils/combine_json_schemas.py' adding 'bmcgo/utils/component_post.py' adding 'bmcgo/utils/component_version_check.py' adding 'bmcgo/utils/config.py' adding 'bmcgo/utils/fetch_component_code.py' adding 'bmcgo/utils/install_manager.py' adding 'bmcgo/utils/json_validator.py' adding 'bmcgo/utils/mapping_config_patch.py' adding 'bmcgo/utils/merge_csr.py' adding 'bmcgo/utils/perf_analysis.py' adding 'bmcgo/utils/tools.py' adding 'bmcgo/utils/installations/README.md' adding 'bmcgo/utils/installations/__init__.py' adding 'bmcgo/utils/installations/base_installer.py' adding 'bmcgo/utils/installations/install_consts.py' adding 'bmcgo/utils/installations/install_workflow.py' adding 'bmcgo/utils/installations/version_util.py' adding 'bmcgo/utils/installations/install_plans/bingo.yml' adding 'bmcgo/utils/installations/install_plans/qemu.yml' adding 'bmcgo/utils/installations/install_plans/studio.yml' adding 'bmcgo/utils/installations/installers/apt_installer.py' adding 'bmcgo/utils/installations/installers/pip_installer.py' adding 'openubmc_bingo-0.6.51.dist-info/METADATA' adding 'openubmc_bingo-0.6.51.dist-info/WHEEL' adding 'openubmc_bingo-0.6.51.dist-info/entry_points.txt' adding 'openubmc_bingo-0.6.51.dist-info/top_level.txt' adding 'openubmc_bingo-0.6.51.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel ======== Exporting recipe to the cache ======== bingo_tools/0.0.2: Exporting package recipe: /tmp/tmpxg6ruogk/build_tools/conanfile.py bingo_tools/0.0.2: Copied 2 '.py' files: conanfile.py, conanfile.py bingo_tools/0.0.2: Copied 2 '.txt' files: CMakeLists.txt, CMakeLists.txt bingo_tools/0.0.2: Copied 2 '.c' files: cms_sign.c, cms_ver.c bingo_tools/0.0.2: Copied 1 '.h' file: public.h bingo_tools/0.0.2: Exported to cache folder: /root/.conan2/p/bingo662451d35788a/e bingo_tools/0.0.2: Exported: bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a (2026-01-06 05:58:29 UTC) ======== Input profiles ======== Profile host: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu14 compiler.libcxx=libstdc++11 compiler.version=9 os=Linux Profile build: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu14 compiler.libcxx=libstdc++11 compiler.version=9 os=Linux ======== Computing dependency graph ======== Graph root cli Requirements bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a - Cache ======== Computing necessary packages ======== bingo_tools/0.0.2: Forced build from source Requirements bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a:70d0fe28d62d89938a1ce8dc5ecfa6b43766d238 - Build ======== Installing packages ======== -------- Installing package bingo_tools/0.0.2 (1 of 1) -------- bingo_tools/0.0.2: Building from source bingo_tools/0.0.2: Package bingo_tools/0.0.2:70d0fe28d62d89938a1ce8dc5ecfa6b43766d238 bingo_tools/0.0.2: Copying sources to build folder bingo_tools/0.0.2: Building your package in /root/.conan2/p/b/bingobec77c872617b/b bingo_tools/0.0.2: Writing generators to /root/.conan2/p/b/bingobec77c872617b/b bingo_tools/0.0.2: Generator 'CMakeDeps' calling 'generate()' bingo_tools/0.0.2: Calling generate() bingo_tools/0.0.2: Generators folder: /root/.conan2/p/b/bingobec77c872617b/b bingo_tools/0.0.2: CMakeToolchain generated: conan_toolchain.cmake bingo_tools/0.0.2: CMakeToolchain generated: /root/.conan2/p/b/bingobec77c872617b/b/CMakePresets.json bingo_tools/0.0.2: Generating aggregated env files bingo_tools/0.0.2: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] bingo_tools/0.0.2: Calling build() bingo_tools/0.0.2: Running CMake.configure() bingo_tools/0.0.2: RUN: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/root/.conan2/p/b/bingobec77c872617b/p" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/root/.conan2/p/b/bingobec77c872617b/b" CMake Warning (dev) at CMakeLists.txt:11 (PROJECT): cmake_minimum_required() should be called prior to this top-level project() call. Please see the cmake-commands(7) manual for usage documentation of both commands. This warning is for project developers. Use -Wno-dev to suppress it. -- Using Conan toolchain: /root/.conan2/p/b/bingobec77c872617b/b/conan_toolchain.cmake -- Conan toolchain: Defining architecture flag: -m64 -- Conan toolchain: C++ Standard 14 with extensions ON -- The C compiler identification is GNU 9.5.0 -- The CXX compiler identification is GNU 9.5.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.1") -- Checking for one of the modules 'libssl' -- Checking for one of the modules 'libcrypto' -- Configuring done (0.3s) -- Generating done (0.0s) -- Build files have been written to: /root/.conan2/p/b/bingobec77c872617b/b bingo_tools/0.0.2: Running CMake.build() bingo_tools/0.0.2: RUN: cmake --build "/root/.conan2/p/b/bingobec77c872617b/b" -- -j8 [ 50%] Building C object signer/CMakeFiles/hpm_signer.dir/cms_sign.c.o [ 50%] Building C object signer/CMakeFiles/hpm_verify.dir/cms_ver.c.o [ 75%] Linking C executable hpm_verify [100%] Linking C executable hpm_signer [100%] Built target hpm_verify [100%] Built target hpm_signer bingo_tools/0.0.2: Running CMake.install() bingo_tools/0.0.2: RUN: cmake --install "/root/.conan2/p/b/bingobec77c872617b/b" --prefix "/root/.conan2/p/b/bingobec77c872617b/p" -- Install configuration: "Release" -- Installing: /root/.conan2/p/b/bingobec77c872617b/p/usr/local/bin/hpm_verify -- Installing: /root/.conan2/p/b/bingobec77c872617b/p/usr/local/bin/hpm_signer bingo_tools/0.0.2: Package '70d0fe28d62d89938a1ce8dc5ecfa6b43766d238' built bingo_tools/0.0.2: Build folder /root/.conan2/p/b/bingobec77c872617b/b bingo_tools/0.0.2: Generating the package bingo_tools/0.0.2: Packaging in folder /root/.conan2/p/b/bingobec77c872617b/p bingo_tools/0.0.2: package(): Packaged 2 files: hpm_signer, hpm_verify bingo_tools/0.0.2: Created package revision 9031cb1425507cbd775d0e8237579887 bingo_tools/0.0.2: Package '70d0fe28d62d89938a1ce8dc5ecfa6b43766d238' created bingo_tools/0.0.2: Full package reference: bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a:70d0fe28d62d89938a1ce8dc5ecfa6b43766d238#9031cb1425507cbd775d0e8237579887 bingo_tools/0.0.2: Package folder /root/.conan2/p/b/bingobec77c872617b/p ======== Input profiles ======== Profile host: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu14 compiler.libcxx=libstdc++11 compiler.version=9 os=Linux Profile build: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu14 compiler.libcxx=libstdc++11 compiler.version=9 os=Linux ======== Computing dependency graph ======== Graph root cli Requirements bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a - Cache ======== Computing necessary packages ======== Requirements bingo_tools/0.0.2#dfc4f0d4b77e064cecce488dd4a65e3a:70d0fe28d62d89938a1ce8dc5ecfa6b43766d238#9031cb1425507cbd775d0e8237579887 - Cache ======== Installing packages ======== bingo_tools/0.0.2: Already installed! (1 of 1) ======== Finalizing install (deploy, generators) ======== cli: Conan built-in pkg deployer to /tmp/tmpxg6ruogk/build_tools/.temp/direct_deploy cli: Generating aggregated env files cli: Generated aggregated env files: ['conanbuild.sh', 'conanrun.sh'] Install finished successfully dpkg-deb: building package 'openubmc-bingo' in '/home/workspace/bingo/output/Generic/openubmc/openubmc-bingo/0.6.51/openubmc_bingo_amd64.deb'. ------------Build bingo(pip) successfully-------------- WARNING: Skipping openubmc-bingo as it is not installed. WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv Looking in indexes: https://mirrors.huaweicloud.com/repository/pypi/simple Processing ./output/PyPI/openubmc/openubmc-bingo/0.6.51/openubmc_bingo-0.6.51-py3-none-any.whl Requirement already satisfied: conan in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (2.13.0) Requirement already satisfied: cryptography<=42.0.7 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (42.0.7) Requirement already satisfied: dbus-python in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (1.4.0) Requirement already satisfied: ecdsa in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (0.19.1) Requirement already satisfied: gitpython in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (3.1.44) Requirement already satisfied: inflection in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (0.5.1) Collecting json5 (from openubmc-bingo==0.6.51) Downloading https://mirrors.huaweicloud.com/repository/pypi/packages/d7/9e/038522f50ceb7e74f1f991bf1b699f24b0c2bbe7c390dd36ad69f4582258/json5-0.13.0-py3-none-any.whl (36 kB) Collecting jsonref (from openubmc-bingo==0.6.51) Downloading https://mirrors.huaweicloud.com/repository/pypi/packages/0c/ec/e1db9922bceb168197a558a2b8c03a7963f1afe93517ddd3cf99f202f996/jsonref-1.1.0-py3-none-any.whl (9.4 kB) Requirement already satisfied: jsonschema in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (4.23.0) Requirement already satisfied: launchpadlib in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (2.1.0) Requirement already satisfied: mako in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (1.3.9) Requirement already satisfied: meson in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (1.7.0) Requirement already satisfied: node-semver==0.6.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (0.6.1) Requirement already satisfied: paramiko<4.0.0 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (3.5.1) Requirement already satisfied: protobuf==3.19.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (3.19.1) Requirement already satisfied: psutil in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (7.0.0) Requirement already satisfied: pyecharts in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (2.0.8) Requirement already satisfied: pyinstaller in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (6.12.0) Requirement already satisfied: pyopenssl<=24.1.0,>=23.2.0 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (24.1.0) Requirement already satisfied: pysftp in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (0.2.9) Requirement already satisfied: pyyaml-include in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (2.2) Requirement already satisfied: tqdm==4.67.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (4.67.1) Requirement already satisfied: typeguard==2.13.3 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo==0.6.51) (2.13.3) Requirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.12/dist-packages (from cryptography<=42.0.7->openubmc-bingo==0.6.51) (1.17.1) Requirement already satisfied: bcrypt>=3.2 in /usr/local/lib/python3.12/dist-packages (from paramiko<4.0.0->openubmc-bingo==0.6.51) (4.3.0) Requirement already satisfied: pynacl>=1.5 in /usr/local/lib/python3.12/dist-packages (from paramiko<4.0.0->openubmc-bingo==0.6.51) (1.5.0) Requirement already satisfied: requests<3.0.0,>=2.25 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (2.32.3) Requirement already satisfied: urllib3<2.1,>=1.26.6 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (1.26.20) Requirement already satisfied: colorama<0.5.0,>=0.4.3 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (0.4.6) Requirement already satisfied: PyYAML<7.0,>=6.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (6.0.2) Requirement already satisfied: patch-ng<1.19,>=1.18.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (1.18.1) Requirement already satisfied: fasteners>=0.15 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (0.19) Requirement already satisfied: distro<=1.8.0,>=1.4.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (1.8.0) Requirement already satisfied: Jinja2<4.0.0,>=3.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (3.1.6) Requirement already satisfied: python-dateutil<3,>=2.8.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo==0.6.51) (2.9.0.post0) Requirement already satisfied: six>=1.9.0 in /usr/lib/python3/dist-packages (from ecdsa->openubmc-bingo==0.6.51) (1.16.0) Requirement already satisfied: gitdb<5,>=4.0.1 in /usr/local/lib/python3.12/dist-packages (from gitpython->openubmc-bingo==0.6.51) (4.0.12) Requirement already satisfied: attrs>=22.2.0 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo==0.6.51) (25.3.0) Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo==0.6.51) (2024.10.1) Requirement already satisfied: referencing>=0.28.4 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo==0.6.51) (0.36.2) Requirement already satisfied: rpds-py>=0.7.1 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo==0.6.51) (0.24.0) Requirement already satisfied: httplib2 in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo==0.6.51) (0.22.0) Requirement already satisfied: lazr.restfulclient>=0.14.2 in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo==0.6.51) (0.14.6) Requirement already satisfied: lazr.uri in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo==0.6.51) (1.0.7) Requirement already satisfied: MarkupSafe>=0.9.2 in /usr/local/lib/python3.12/dist-packages (from mako->openubmc-bingo==0.6.51) (3.0.2) Requirement already satisfied: prettytable in /usr/local/lib/python3.12/dist-packages (from pyecharts->openubmc-bingo==0.6.51) (3.16.0) Requirement already satisfied: simplejson in /usr/local/lib/python3.12/dist-packages (from pyecharts->openubmc-bingo==0.6.51) (3.20.1) Requirement already satisfied: setuptools>=42.0.0 in /usr/lib/python3/dist-packages (from pyinstaller->openubmc-bingo==0.6.51) (68.1.2) Requirement already satisfied: altgraph in /usr/local/lib/python3.12/dist-packages (from pyinstaller->openubmc-bingo==0.6.51) (0.17.4) Requirement already satisfied: pyinstaller-hooks-contrib>=2025.1 in /usr/local/lib/python3.12/dist-packages (from pyinstaller->openubmc-bingo==0.6.51) (2025.2) Requirement already satisfied: packaging>=22.0 in /usr/lib/python3/dist-packages (from pyinstaller->openubmc-bingo==0.6.51) (24.0) Requirement already satisfied: fsspec>=2021.04.0 in /usr/local/lib/python3.12/dist-packages (from pyyaml-include->openubmc-bingo==0.6.51) (2025.3.0) Requirement already satisfied: pycparser in /usr/local/lib/python3.12/dist-packages (from cffi>=1.12->cryptography<=42.0.7->openubmc-bingo==0.6.51) (2.22) Requirement already satisfied: smmap<6,>=3.0.1 in /usr/local/lib/python3.12/dist-packages (from gitdb<5,>=4.0.1->gitpython->openubmc-bingo==0.6.51) (5.0.2) Requirement already satisfied: oauthlib in /usr/local/lib/python3.12/dist-packages (from lazr.restfulclient>=0.14.2->launchpadlib->openubmc-bingo==0.6.51) (3.2.2) Requirement already satisfied: wadllib>=1.1.4 in /usr/local/lib/python3.12/dist-packages (from lazr.restfulclient>=0.14.2->launchpadlib->openubmc-bingo==0.6.51) (2.0.0) Requirement already satisfied: pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2 in /usr/local/lib/python3.12/dist-packages (from httplib2->launchpadlib->openubmc-bingo==0.6.51) (3.2.3) Requirement already satisfied: typing-extensions>=4.4.0 in /usr/local/lib/python3.12/dist-packages (from referencing>=0.28.4->jsonschema->openubmc-bingo==0.6.51) (4.13.0) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo==0.6.51) (3.4.1) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo==0.6.51) (3.10) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo==0.6.51) (2025.1.31) Requirement already satisfied: wcwidth in /usr/local/lib/python3.12/dist-packages (from prettytable->pyecharts->openubmc-bingo==0.6.51) (0.2.13) Installing collected packages: jsonref, json5, openubmc-bingo Successfully installed json5-0.13.0 jsonref-1.1.0 openubmc-bingo-0.6.51 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv ------------Build bingo(pip) successfully-------------- (Reading database ... 88459 files and directories currently installed.) Removing openubmc-bingo (0.5.230) ... Purging configuration files for openubmc-bingo (0.5.230) ... -----------Uninstall bingo(deb) successfully------------ Selecting previously unselected package openubmc-bingo. (Reading database ... 88430 files and directories currently installed.) Preparing to unpack .../openubmc_bingo_amd64.deb ... Unpacking openubmc-bingo (0.6.51) ... dpkg: dependency problems prevent configuration of openubmc-bingo: openubmc-bingo depends on ninja-build; however: Package ninja-build is not installed. dpkg: error processing package openubmc-bingo (--install): dependency problems - leaving unconfigured Errors were encountered while processing: openubmc-bingo Reading package lists... Done Building dependency tree... Done Reading state information... Done Correcting dependencies... Done The following packages were automatically installed and are no longer required: acl glib-networking glib-networking-common glib-networking-services gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x ibverbs-providers ipxe-qemu ipxe-qemu-256k-compat-efi-roms iso-codes libaa1 libaio1t64 libavc1394-0 libboost-iostreams1.83.0 libboost-thread1.83.0 libbpf1 libbrlapi0.8 libcaca0 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdecor-0-0 libdecor-0-plugin-1-gtk libduktape207 libdv4t64 libdw1t64 libepoxy0 libfdt1 libfuse3-3 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgstreamer1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libibverbs1 libiec61883-0 libiscsi7 libjack-jackd2-0 libndctl6 libnfs14 libnl-3-200 libnl-route-3-200 libnuma1 liborc-0.4-0t64 libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslang2 libslirp0 libsoup-3.0-0 libsoup-3.0-common libspa-0.2-modules libspeex1 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtwolame0 libunwind8 liburing2 libusb-1.0-0 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libvirglrenderer1 libvisual-0.4-0 libvpx9 libvte-2.91-0 libvte-2.91-common libwayland-cursor0 libwayland-egl1 libwebrtc-audio-processing1 libxkbcommon0 libxss1 qemu-block-extra qemu-efi-aarch64 qemu-efi-arm qemu-system-arm qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-utils xkb-data Use 'sudo apt autoremove' to remove them. The following additional packages will be installed: ninja-build The following NEW packages will be installed: ninja-build 0 upgraded, 1 newly installed, 0 to remove and 167 not upgraded. 1 not fully installed or removed. Need to get 129 kB of archives. After this operation, 364 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble/universe amd64 ninja-build amd64 1.11.1-2 [129 kB] Fetched 129 kB in 2s (63.0 kB/s) debconf: delaying package configuration, since apt-utils is not installed Selecting previously unselected package ninja-build. (Reading database ... 88481 files and directories currently installed.) Preparing to unpack .../ninja-build_1.11.1-2_amd64.deb ... Unpacking ninja-build (1.11.1-2) ... Setting up ninja-build (1.11.1-2) ... Setting up openubmc-bingo (0.6.51) ... start install bingo install /etc/bmcgo.conf (Reading database ... 88492 files and directories currently installed.) Preparing to unpack .../openubmc_bingo_amd64.deb ... Unpacking openubmc-bingo (0.6.51) over (0.6.51) ... Setting up openubmc-bingo (0.6.51) ... start install bingo install /etc/bmcgo.conf ------------Install bingo(deb) successfully------------ root@docker-desktop:/home/workspace/bingo# cd ../manifest/ root@docker-desktop:/home/workspace/manifest# git branch -a * main remotes/origin/HEAD -> origin/main remotes/origin/br_release_openUBMC2509_20251230 remotes/origin/br_release_openUBMC2512_20261231_LTS remotes/origin/main remotes/origin/revert-mr-255-1759147207463-auto root@docker-desktop:/home/workspace/manifest# git checkout br_release_openUBMC2509_20251230 branch 'br_release_openUBMC2509_20251230' set up to track 'origin/br_release_openUBMC2509_20251230'. Switched to a new branch 'br_release_openUBMC2509_20251230' root@docker-desktop:/home/workspace/manifest# git branch -a * br_release_openUBMC2509_20251230 main remotes/origin/HEAD -> origin/main remotes/origin/br_release_openUBMC2509_20251230 remotes/origin/br_release_openUBMC2512_20261231_LTS remotes/origin/main remotes/origin/revert-mr-255-1759147207463-auto root@docker-desktop:/home/workspace/manifest# python3 init.py -path ./bmc_sdk.zip Hit:1 http://mirrors.huaweicloud.com/ubuntu noble InRelease Get:2 http://mirrors.huaweicloud.com/ubuntu noble-updates InRelease [126 kB] Get:3 http://mirrors.huaweicloud.com/ubuntu noble-backports InRelease [126 kB] Get:4 http://mirrors.huaweicloud.com/ubuntu noble-security InRelease [126 kB] Get:5 http://mirrors.huaweicloud.com/ubuntu noble-updates/multiverse amd64 Packages [35.9 kB] Get:6 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 Packages [2130 kB] Get:7 http://mirrors.huaweicloud.com/ubuntu noble-updates/universe amd64 Packages [1950 kB] Get:8 http://mirrors.huaweicloud.com/ubuntu noble-updates/restricted amd64 Packages [3059 kB] Get:9 http://mirrors.huaweicloud.com/ubuntu noble-backports/main amd64 Packages [49.5 kB] Get:10 http://mirrors.huaweicloud.com/ubuntu noble-backports/universe amd64 Packages [34.6 kB] Get:11 http://mirrors.huaweicloud.com/ubuntu noble-security/restricted amd64 Packages [2898 kB] Get:12 http://mirrors.huaweicloud.com/ubuntu noble-security/main amd64 Packages [1752 kB] Get:13 http://mirrors.huaweicloud.com/ubuntu noble-security/universe amd64 Packages [1183 kB] Get:14 http://mirrors.huaweicloud.com/ubuntu noble-security/multiverse amd64 Packages [33.1 kB] Fetched 13.5 MB in 9s (1486 kB/s) Reading package lists... Done Reading package lists... Done Building dependency tree... Done Reading state information... Done git is already the newest version (1:2.43.0-1ubuntu7.3). wget is already the newest version (1.21.4-1ubuntu4.1). curl is already the newest version (8.5.0-2ubuntu10.6). ca-certificates is already the newest version (20240203). dbus-x11 is already the newest version (1.14.10-4ubuntu4.1). libdbus-1-dev is already the newest version (1.14.10-4ubuntu4.1). dbus is already the newest version (1.14.10-4ubuntu4.1). dbus set to manually installed. pkgconf is already the newest version (1.8.1-2build1). gcc-9 is already the newest version (9.5.0-6ubuntu2). g++-9 is already the newest version (9.5.0-6ubuntu2). unzip is already the newest version (6.0-28ubuntu4.1). npm is already the newest version (9.2.0~ds1-2). The following packages were automatically installed and are no longer required: acl glib-networking glib-networking-common glib-networking-services gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x ibverbs-providers ipxe-qemu ipxe-qemu-256k-compat-efi-roms iso-codes libaa1 libaio1t64 libavc1394-0 libboost-iostreams1.83.0 libboost-thread1.83.0 libbpf1 libbrlapi0.8 libcaca0 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdecor-0-0 libdecor-0-plugin-1-gtk libduktape207 libdv4t64 libdw1t64 libepoxy0 libfdt1 libfuse3-3 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgstreamer1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libibverbs1 libiec61883-0 libiscsi7 libjack-jackd2-0 libndctl6 libnfs14 libnl-3-200 libnl-route-3-200 libnuma1 liborc-0.4-0t64 libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslang2 libslirp0 libsoup-3.0-0 libsoup-3.0-common libspa-0.2-modules libspeex1 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtwolame0 libunwind8 liburing2 libusb-1.0-0 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libvirglrenderer1 libvisual-0.4-0 libvpx9 libvte-2.91-0 libvte-2.91-common libwayland-cursor0 libwayland-egl1 libwebrtc-audio-processing1 libxkbcommon0 libxss1 qemu-block-extra qemu-efi-aarch64 qemu-efi-arm qemu-system-arm qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-utils xkb-data Use 'sudo apt autoremove' to remove them. The following additional packages will be installed: gir1.2-glib-2.0 libgirepository-2.0-0 libglib2.0-0t64 libglib2.0-bin libglib2.0-data libglib2.0-dev-bin libpython3-dev libpython3-stdlib python3-minimal Suggested packages: low-memory-monitor gir1.2-glib-2.0-dev libglib2.0-doc python3-doc python3-tk python3-venv The following packages will be upgraded: gir1.2-glib-2.0 ipmitool libgirepository-2.0-0 libglib2.0-0t64 libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libpython3-dev libpython3-stdlib python3 python3-dev python3-minimal python3-pip 14 upgraded, 0 newly installed, 0 to remove and 181 not upgraded. Need to get 7394 kB of archives. After this operation, 36.9 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libpython3-dev amd64 3.12.3-0ubuntu2.1 [10.3 kB] Get:2 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 python3-dev amd64 3.12.3-0ubuntu2.1 [26.7 kB] Get:3 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 python3-minimal amd64 3.12.3-0ubuntu2.1 [27.4 kB] Get:4 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 python3 amd64 3.12.3-0ubuntu2.1 [23.0 kB] Get:5 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libpython3-stdlib amd64 3.12.3-0ubuntu2.1 [10.1 kB] Get:6 http://mirrors.huaweicloud.com/ubuntu noble-updates/universe amd64 ipmitool amd64 1.8.19-7ubuntu0.24.04.3 [2030 kB] Get:7 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libglib2.0-data all 2.80.0-6ubuntu3.5 [48.8 kB] Get:8 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libglib2.0-dev amd64 2.80.0-6ubuntu3.5 [1860 kB] Get:9 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libglib2.0-bin amd64 2.80.0-6ubuntu3.5 [97.9 kB] Get:10 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libgirepository-2.0-0 amd64 2.80.0-6ubuntu3.5 [73.5 kB] Get:11 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libglib2.0-dev-bin amd64 2.80.0-6ubuntu3.5 [138 kB] Get:12 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 gir1.2-glib-2.0 amd64 2.80.0-6ubuntu3.5 [183 kB] Get:13 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libglib2.0-0t64 amd64 2.80.0-6ubuntu3.5 [1544 kB] Get:14 http://mirrors.huaweicloud.com/ubuntu noble-updates/universe amd64 python3-pip all 24.0+dfsg-1ubuntu1.3 [1320 kB] Fetched 7394 kB in 5s (1519 kB/s) debconf: delaying package configuration, since apt-utils is not installed (Reading database ... 88492 files and directories currently installed.) Preparing to unpack .../libpython3-dev_3.12.3-0ubuntu2.1_amd64.deb ... Unpacking libpython3-dev:amd64 (3.12.3-0ubuntu2.1) over (3.12.3-0ubuntu2) ... Preparing to unpack .../python3-dev_3.12.3-0ubuntu2.1_amd64.deb ... Unpacking python3-dev (3.12.3-0ubuntu2.1) over (3.12.3-0ubuntu2) ... Preparing to unpack .../python3-minimal_3.12.3-0ubuntu2.1_amd64.deb ... Unpacking python3-minimal (3.12.3-0ubuntu2.1) over (3.12.3-0ubuntu2) ... Setting up python3-minimal (3.12.3-0ubuntu2.1) ... (Reading database ... 88492 files and directories currently installed.) Preparing to unpack .../00-python3_3.12.3-0ubuntu2.1_amd64.deb ... running python pre-rtupdate hooks for python3.12... Unpacking python3 (3.12.3-0ubuntu2.1) over (3.12.3-0ubuntu2) ... Preparing to unpack .../01-libpython3-stdlib_3.12.3-0ubuntu2.1_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.12.3-0ubuntu2.1) over (3.12.3-0ubuntu2) ... Preparing to unpack .../02-ipmitool_1.8.19-7ubuntu0.24.04.3_amd64.deb ... Unpacking ipmitool (1.8.19-7ubuntu0.24.04.3) over (1.8.19-7ubuntu0.24.04.1) ... Preparing to unpack .../03-libglib2.0-data_2.80.0-6ubuntu3.5_all.deb ... Unpacking libglib2.0-data (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../04-libglib2.0-dev_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking libglib2.0-dev:amd64 (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../05-libglib2.0-bin_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking libglib2.0-bin (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../06-libgirepository-2.0-0_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking libgirepository-2.0-0:amd64 (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../07-libglib2.0-dev-bin_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking libglib2.0-dev-bin (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../08-gir1.2-glib-2.0_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../09-libglib2.0-0t64_2.80.0-6ubuntu3.5_amd64.deb ... Unpacking libglib2.0-0t64:amd64 (2.80.0-6ubuntu3.5) over (2.80.0-6ubuntu3.2) ... Preparing to unpack .../10-python3-pip_24.0+dfsg-1ubuntu1.3_all.deb ... Unpacking python3-pip (24.0+dfsg-1ubuntu1.3) over (24.0+dfsg-1ubuntu1.2) ... Setting up libpython3-dev:amd64 (3.12.3-0ubuntu2.1) ... Setting up libglib2.0-0t64:amd64 (2.80.0-6ubuntu3.5) ... Setting up libglib2.0-data (2.80.0-6ubuntu3.5) ... Setting up gir1.2-glib-2.0:amd64 (2.80.0-6ubuntu3.5) ... Setting up ipmitool (1.8.19-7ubuntu0.24.04.3) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of restart. Setting up libpython3-stdlib:amd64 (3.12.3-0ubuntu2.1) ... Setting up libgirepository-2.0-0:amd64 (2.80.0-6ubuntu3.5) ... Setting up libglib2.0-bin (2.80.0-6ubuntu3.5) ... Setting up python3 (3.12.3-0ubuntu2.1) ... running python rtupdate hooks for python3.12... running python post-rtupdate hooks for python3.12... Setting up python3-dev (3.12.3-0ubuntu2.1) ... Setting up python3-pip (24.0+dfsg-1ubuntu1.3) ... Setting up libglib2.0-dev-bin (2.80.0-6ubuntu3.5) ... Setting up libglib2.0-dev:amd64 (2.80.0-6ubuntu3.5) ... Processing triggers for libc-bin (2.39-0ubuntu8.4) ... Reading package lists... Done Building dependency tree... Done Reading state information... Done Package 'python3-urllib3' is not installed, so not removed Package 'python3-distro' is not installed, so not removed The following packages were automatically installed and are no longer required: acl glib-networking glib-networking-common glib-networking-services gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x ibverbs-providers ipxe-qemu ipxe-qemu-256k-compat-efi-roms iso-codes libaa1 libaio1t64 libavc1394-0 libboost-iostreams1.83.0 libboost-thread1.83.0 libbpf1 libbrlapi0.8 libcaca0 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdecor-0-0 libdecor-0-plugin-1-gtk libduktape207 libdv4t64 libdw1t64 libepoxy0 libfdt1 libfuse3-3 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgstreamer1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libibverbs1 libiec61883-0 libiscsi7 libjack-jackd2-0 libndctl6 libnfs14 libnl-3-200 libnl-route-3-200 libnuma1 liborc-0.4-0t64 libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslang2 libslirp0 libsoup-3.0-0 libsoup-3.0-common libspa-0.2-modules libspeex1 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtwolame0 libunwind8 liburing2 libusb-1.0-0 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libvirglrenderer1 libvisual-0.4-0 libvpx9 libvte-2.91-0 libvte-2.91-common libwayland-cursor0 libwayland-egl1 libwebrtc-audio-processing1 libxkbcommon0 libxss1 qemu-block-extra qemu-efi-aarch64 qemu-efi-arm qemu-system-arm qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-utils xkb-data Use 'sudo apt autoremove' to remove them. 0 upgraded, 0 newly installed, 0 to remove and 181 not upgraded. Reading package lists... Done Building dependency tree... Done Reading state information... Done The following packages will be REMOVED: acl glib-networking glib-networking-common glib-networking-services gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x ibverbs-providers ipxe-qemu ipxe-qemu-256k-compat-efi-roms iso-codes libaa1 libaio1t64 libavc1394-0 libboost-iostreams1.83.0 libboost-thread1.83.0 libbpf1 libbrlapi0.8 libcaca0 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdecor-0-0 libdecor-0-plugin-1-gtk libduktape207 libdv4t64 libdw1t64 libepoxy0 libfdt1 libfuse3-3 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgstreamer1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libibverbs1 libiec61883-0 libiscsi7 libjack-jackd2-0 libndctl6 libnfs14 libnl-3-200 libnl-route-3-200 libnuma1 liborc-0.4-0t64 libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslang2 libslirp0 libsoup-3.0-0 libsoup-3.0-common libspa-0.2-modules libspeex1 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtwolame0 libunwind8 liburing2 libusb-1.0-0 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libvirglrenderer1 libvisual-0.4-0 libvpx9 libvte-2.91-0 libvte-2.91-common libwayland-cursor0 libwayland-egl1 libwebrtc-audio-processing1 libxkbcommon0 libxss1 qemu-block-extra qemu-efi-aarch64 qemu-efi-arm qemu-system-arm qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-utils xkb-data 0 upgraded, 0 newly installed, 98 to remove and 151 not upgraded. After this operation, 694 MB disk space will be freed. (Reading database ... 88492 files and directories currently installed.) Removing qemu-block-extra (1:8.2.2+ds-0ubuntu1.6) ... Removing qemu-system-modules-spice (1:8.2.2+ds-0ubuntu1.6) ... Removing gstreamer1.0-plugins-good:amd64 (1.24.2-1ubuntu1.1) ... Removing libsoup-3.0-0:amd64 (3.4.4-5ubuntu0.1) ... Removing glib-networking:amd64 (2.80.0-1build1) ... Removing glib-networking-services (2.80.0-1build1) ... Removing glib-networking-common (2.80.0-1build1) ... Removing gstreamer1.0-plugins-base:amd64 (1.24.2-1ubuntu0.2) ... Removing gstreamer1.0-x:amd64 (1.24.2-1ubuntu0.2) ... Removing ibverbs-providers:amd64 (50.0-2build2) ... Removing ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ... Removing ipxe-qemu-256k-compat-efi-roms (1.0.0+git-20150424.a25a16d-0ubuntu5) ... Removing libgstreamer-plugins-good1.0-0:amd64 (1.24.2-1ubuntu1.1) ... Removing libspice-server1:amd64 (0.15.1-1build2) ... Removing libgstreamer-plugins-base1.0-0:amd64 (1.24.2-1ubuntu0.2) ... Removing iso-codes (4.16.0-1) ... Removing libaa1:amd64 (1.4p5-51.1) ... Removing qemu-utils (1:8.2.2+ds-0ubuntu1.6) ... Removing librbd1 (19.2.0-0ubuntu0.24.04.2) ... Removing libavc1394-0:amd64 (0.5.4-5build3) ... Removing librados2 (19.2.0-0ubuntu0.24.04.2) ... Removing libboost-iostreams1.83.0:amd64 (1.83.0-2.1ubuntu3.1) ... Removing libboost-thread1.83.0:amd64 (1.83.0-2.1ubuntu3.1) ... Removing libcaca0:amd64 (0.99.beta20-4build2) ... Removing libcdparanoia0:amd64 (3.10.2+debian-14build3) ... Removing libgtk-3-bin (3.24.41-4ubuntu1.2) ... Removing qemu-system-gui (1:8.2.2+ds-0ubuntu1.6) ... Removing libpmemobj1:amd64 (1.13.1-1.1ubuntu2) ... Removing libsdl2-2.0-0:amd64 (2.30.0+dfsg-1build3) ... Removing libdecor-0-plugin-1-gtk:amd64 (0.2.2-1build2) ... Removing libdecor-0-0:amd64 (0.2.2-1build2) ... Removing libproxy1v5:amd64 (0.5.4-4build1) ... Removing libduktape207:amd64 (2.7.0+tests-0ubuntu3) ... Removing libdv4t64:amd64 (1.0.0-17.1build1) ... Removing libgstreamer1.0-0:amd64 (1.24.2-1ubuntu0.1) ... Removing libdw1t64:amd64 (0.190-1.1ubuntu0.1) ... Removing qemu-system-modules-opengl (1:8.2.2+ds-0ubuntu1.6) ... Removing libvirglrenderer1:amd64 (1.0.0-1ubuntu2) ... Removing libgudev-1.0-0:amd64 (1:238-5ubuntu1) ... Removing libiscsi7:amd64 (1.19.0-3build4) ... Removing libiec61883-0:amd64 (1.2.0-6build1) ... Removing libjack-jackd2-0:amd64 (1.9.21~dfsg-3ubuntu3) ... Removing libnfs14:amd64 (5.0.2-1build1) ... Removing liborc-0.4-0t64:amd64 (1:0.4.38-1ubuntu0.1) ... Removing libpipewire-0.3-0t64:amd64 (1.0.5-1ubuntu3) ... Removing libpipewire-0.3-common (1.0.5-1ubuntu3) ... Removing libraw1394-11:amd64 (2.1.2-2build3) ... Removing libsamplerate0:amd64 (0.2.2-4build1) ... Removing libshout3:amd64 (2.4.6-1build2) ... Removing libslang2:amd64 (2.3.3-3build2) ... Removing libsoup-3.0-common (3.4.4-5ubuntu0.1) ... Removing libspa-0.2-modules:amd64 (1.0.5-1ubuntu3) ... Removing libspeex1:amd64 (1.2.1-2ubuntu2.24.04.1) ... Removing libtag1v5:amd64 (1.13.1-1build1) ... Removing libtag1v5-vanilla:amd64 (1.13.1-1build1) ... Removing libtheora0:amd64 (1.1.1+dfsg.1-16.1build3) ... Removing libtwolame0:amd64 (0.4.0-2build3) ... Removing libunwind8:amd64 (1.6.2-3build1.1) ... Removing libv4l-0t64:amd64 (1.26.1-4build3) ... Removing libv4lconvert0t64:amd64 (1.26.1-4build3) ... Removing libvisual-0.4-0:amd64 (0.4.2-2build1) ... Removing libvpx9:amd64 (1.14.0-1ubuntu2.1) ... Removing libvte-2.91-0:amd64 (0.76.0-1ubuntu0.1) ... Removing libvte-2.91-common (0.76.0-1ubuntu0.1) ... Removing libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu6) ... Removing libxss1:amd64 (1:1.2.3-1build3) ... Removing qemu-efi-aarch64 (2024.02-2ubuntu0.1) ... Removing qemu-efi-arm (2024.02-2ubuntu0.1) ... Removing qemu-system-arm (1:8.2.2+ds-0ubuntu1.6) ... Removing qemu-system-common (1:8.2.2+ds-0ubuntu1.6) ... Removing acl (2.3.2-1build1.1) ... Removing libaio1t64:amd64 (0.3.113-6build1.1) ... Removing libbpf1:amd64 (1:1.3.0-2build2) ... Removing libbrlapi0.8:amd64 (6.6-4ubuntu5) ... Removing libcacard0:amd64 (1:2.8.0-3build4) ... Removing libgtk-3-0t64:amd64 (3.24.41-4ubuntu1.2) ... Removing libcolord2:amd64 (1.4.7-1build2) ... Removing libpmem1:amd64 (1.13.1-1.1ubuntu2) ... Removing libndctl6:amd64 (77-2ubuntu2) ... Removing libdaxctl1:amd64 (77-2ubuntu2) ... Removing libepoxy0:amd64 (1.5.10-1build1) ... Removing libfdt1:amd64 (1.7.0-2build1) ... Removing libfuse3-3:amd64 (3.14.0-5build1) ... Removing libgtk-3-common (3.24.41-4ubuntu1.2) ... Removing librdmacm1t64:amd64 (50.0-2build2) ... Removing libibverbs1:amd64 (50.0-2build2) ... Removing libnl-route-3-200:amd64 (3.7.0-0.3build1.1) ... Removing libnl-3-200:amd64 (3.7.0-0.3build1.1) ... Removing libnuma1:amd64 (2.0.18-1build1) ... Removing libslirp0:amd64 (4.7.0-1ubuntu3) ... Removing liburing2:amd64 (2.5-1build1) ... Removing libusb-1.0-0:amd64 (2:1.0.27-1) ... Removing libusbredirparser1t64:amd64 (0.13.0-2.1build1) ... Removing libwayland-cursor0:amd64 (1.22.0-2.1build1) ... Removing libwayland-egl1:amd64 (1.22.0-2.1build1) ... Removing libxkbcommon0:amd64 (1.6.0-1build1) ... Removing qemu-system-data (1:8.2.2+ds-0ubuntu1.6) ... Removing xkb-data (2.41-2ubuntu1.1) ... Processing triggers for libc-bin (2.39-0ubuntu8.4) ... Processing triggers for libglib2.0-0t64:amd64 (2.80.0-6ubuntu3.5) ... Processing triggers for sgml-base (1.31) ... Processing triggers for hicolor-icon-theme (0.17-2) ... --2026-01-06 14:02:58-- https://mirrors.huaweicloud.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb Resolving mirrors.huaweicloud.com (mirrors.huaweicloud.com)... 120.46.63.139, 120.46.2.67, 1.92.76.132 Connecting to mirrors.huaweicloud.com (mirrors.huaweicloud.com)|120.46.63.139|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 1318204 (1.3M) [application/octet-stream] Saving to: ‘libssl1.1_1.1.1f-1ubuntu2_amd64.deb’ libssl1.1_1.1.1f-1ubuntu2_amd64.deb 100%[==============================================================================>] 1.26M 3.35MB/s in 0.4s 2026-01-06 14:02:59 (3.35 MB/s) - ‘libssl1.1_1.1.1f-1ubuntu2_amd64.deb’ saved [1318204/1318204] (Reading database ... 85549 files and directories currently installed.) Preparing to unpack libssl1.1_1.1.1f-1ubuntu2_amd64.deb ... Unpacking libssl1.1:amd64 (1.1.1f-1ubuntu2) over (1.1.1f-1ubuntu2) ... Setting up libssl1.1:amd64 (1.1.1f-1ubuntu2) ... debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline Processing triggers for libc-bin (2.39-0ubuntu8.4) ... Writing to /root/.config/pip/pip.conf Writing to /root/.config/pip/pip.conf Writing to /root/.config/pip/pip.conf Writing to /root/.config/pip/pip.conf Looking in indexes: https://mirrors.huaweicloud.com/repository/pypi, https://mirrors.huaweicloud.com/repository/pypi/simple Requirement already satisfied: conan>=2.0.0 in /usr/local/lib/python3.12/dist-packages (2.13.0) Requirement already satisfied: requests<3.0.0,>=2.25 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (2.32.3) Requirement already satisfied: urllib3<2.1,>=1.26.6 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (1.26.20) Requirement already satisfied: colorama<0.5.0,>=0.4.3 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (0.4.6) Requirement already satisfied: PyYAML<7.0,>=6.0 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (6.0.2) Requirement already satisfied: patch-ng<1.19,>=1.18.0 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (1.18.1) Requirement already satisfied: fasteners>=0.15 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (0.19) Requirement already satisfied: distro<=1.8.0,>=1.4.0 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (1.8.0) Requirement already satisfied: Jinja2<4.0.0,>=3.0 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (3.1.6) Requirement already satisfied: python-dateutil<3,>=2.8.0 in /usr/local/lib/python3.12/dist-packages (from conan>=2.0.0) (2.9.0.post0) Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.12/dist-packages (from Jinja2<4.0.0,>=3.0->conan>=2.0.0) (3.0.2) Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil<3,>=2.8.0->conan>=2.0.0) (1.16.0) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan>=2.0.0) (3.4.1) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan>=2.0.0) (3.10) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan>=2.0.0) (2025.1.31) WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv Reading package lists... Done Building dependency tree... Done Reading state information... Done openubmc-bingo is already the newest version (0.6.51). The following packages will be upgraded: libcap2 1 upgraded, 0 newly installed, 0 to remove and 150 not upgraded. Need to get 30.0 kB of archives. After this operation, 1024 B of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libcap2 amd64 1:2.66-5ubuntu2.2 [30.0 kB] Fetched 30.0 kB in 2s (15.2 kB/s) debconf: delaying package configuration, since apt-utils is not installed (Reading database ... 85549 files and directories currently installed.) Preparing to unpack .../libcap2_1%3a2.66-5ubuntu2.2_amd64.deb ... Unpacking libcap2:amd64 (1:2.66-5ubuntu2.2) over (1:2.66-5ubuntu2) ... Setting up libcap2:amd64 (1:2.66-5ubuntu2.2) ... Processing triggers for libc-bin (2.39-0ubuntu8.4) ... Looking in indexes: https://mirrors.huaweicloud.com/repository/pypi, https://mirrors.huaweicloud.com/repository/pypi/simple Requirement already satisfied: openubmc-bingo in /usr/local/lib/python3.12/dist-packages (0.6.51) Requirement already satisfied: conan in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (2.13.0) Requirement already satisfied: cryptography<=42.0.7 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (42.0.7) Requirement already satisfied: dbus-python in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (1.4.0) Requirement already satisfied: ecdsa in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (0.19.1) Requirement already satisfied: gitpython in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (3.1.44) Requirement already satisfied: inflection in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (0.5.1) Requirement already satisfied: json5 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (0.13.0) Requirement already satisfied: jsonref in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (1.1.0) Requirement already satisfied: jsonschema in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (4.23.0) Requirement already satisfied: launchpadlib in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (2.1.0) Requirement already satisfied: mako in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (1.3.9) Requirement already satisfied: meson in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (1.7.0) Requirement already satisfied: node-semver==0.6.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (0.6.1) Requirement already satisfied: paramiko<4.0.0 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (3.5.1) Requirement already satisfied: protobuf==3.19.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (3.19.1) Requirement already satisfied: psutil in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (7.0.0) Requirement already satisfied: pyecharts in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (2.0.8) Requirement already satisfied: pyinstaller in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (6.12.0) Requirement already satisfied: pyopenssl<=24.1.0,>=23.2.0 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (24.1.0) Requirement already satisfied: pysftp in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (0.2.9) Requirement already satisfied: pyyaml-include in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (2.2) Requirement already satisfied: tqdm==4.67.1 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (4.67.1) Requirement already satisfied: typeguard==2.13.3 in /usr/local/lib/python3.12/dist-packages (from openubmc-bingo) (2.13.3) Requirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.12/dist-packages (from cryptography<=42.0.7->openubmc-bingo) (1.17.1) Requirement already satisfied: bcrypt>=3.2 in /usr/local/lib/python3.12/dist-packages (from paramiko<4.0.0->openubmc-bingo) (4.3.0) Requirement already satisfied: pynacl>=1.5 in /usr/local/lib/python3.12/dist-packages (from paramiko<4.0.0->openubmc-bingo) (1.5.0) Requirement already satisfied: requests<3.0.0,>=2.25 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (2.32.3) Requirement already satisfied: urllib3<2.1,>=1.26.6 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (1.26.20) Requirement already satisfied: colorama<0.5.0,>=0.4.3 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (0.4.6) Requirement already satisfied: PyYAML<7.0,>=6.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (6.0.2) Requirement already satisfied: patch-ng<1.19,>=1.18.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (1.18.1) Requirement already satisfied: fasteners>=0.15 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (0.19) Requirement already satisfied: distro<=1.8.0,>=1.4.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (1.8.0) Requirement already satisfied: Jinja2<4.0.0,>=3.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (3.1.6) Requirement already satisfied: python-dateutil<3,>=2.8.0 in /usr/local/lib/python3.12/dist-packages (from conan->openubmc-bingo) (2.9.0.post0) Requirement already satisfied: six>=1.9.0 in /usr/lib/python3/dist-packages (from ecdsa->openubmc-bingo) (1.16.0) Requirement already satisfied: gitdb<5,>=4.0.1 in /usr/local/lib/python3.12/dist-packages (from gitpython->openubmc-bingo) (4.0.12) Requirement already satisfied: attrs>=22.2.0 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo) (25.3.0) Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo) (2024.10.1) Requirement already satisfied: referencing>=0.28.4 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo) (0.36.2) Requirement already satisfied: rpds-py>=0.7.1 in /usr/local/lib/python3.12/dist-packages (from jsonschema->openubmc-bingo) (0.24.0) Requirement already satisfied: httplib2 in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo) (0.22.0) Requirement already satisfied: lazr.restfulclient>=0.14.2 in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo) (0.14.6) Requirement already satisfied: lazr.uri in /usr/local/lib/python3.12/dist-packages (from launchpadlib->openubmc-bingo) (1.0.7) Requirement already satisfied: MarkupSafe>=0.9.2 in /usr/local/lib/python3.12/dist-packages (from mako->openubmc-bingo) (3.0.2) Requirement already satisfied: prettytable in /usr/local/lib/python3.12/dist-packages (from pyecharts->openubmc-bingo) (3.16.0) Requirement already satisfied: simplejson in /usr/local/lib/python3.12/dist-packages (from pyecharts->openubmc-bingo) (3.20.1) Requirement already satisfied: setuptools>=42.0.0 in /usr/lib/python3/dist-packages (from pyinstaller->openubmc-bingo) (68.1.2) Requirement already satisfied: altgraph in /usr/local/lib/python3.12/dist-packages (from pyinstaller->openubmc-bingo) (0.17.4) Requirement already satisfied: pyinstaller-hooks-contrib>=2025.1 in /usr/local/lib/python3.12/dist-packages (from pyinstaller->openubmc-bingo) (2025.2) Requirement already satisfied: packaging>=22.0 in /usr/lib/python3/dist-packages (from pyinstaller->openubmc-bingo) (24.0) Requirement already satisfied: fsspec>=2021.04.0 in /usr/local/lib/python3.12/dist-packages (from pyyaml-include->openubmc-bingo) (2025.3.0) Requirement already satisfied: pycparser in /usr/local/lib/python3.12/dist-packages (from cffi>=1.12->cryptography<=42.0.7->openubmc-bingo) (2.22) Requirement already satisfied: smmap<6,>=3.0.1 in /usr/local/lib/python3.12/dist-packages (from gitdb<5,>=4.0.1->gitpython->openubmc-bingo) (5.0.2) Requirement already satisfied: oauthlib in /usr/local/lib/python3.12/dist-packages (from lazr.restfulclient>=0.14.2->launchpadlib->openubmc-bingo) (3.2.2) Requirement already satisfied: wadllib>=1.1.4 in /usr/local/lib/python3.12/dist-packages (from lazr.restfulclient>=0.14.2->launchpadlib->openubmc-bingo) (2.0.0) Requirement already satisfied: pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2 in /usr/local/lib/python3.12/dist-packages (from httplib2->launchpadlib->openubmc-bingo) (3.2.3) Requirement already satisfied: typing-extensions>=4.4.0 in /usr/local/lib/python3.12/dist-packages (from referencing>=0.28.4->jsonschema->openubmc-bingo) (4.13.0) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo) (3.4.1) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo) (3.10) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests<3.0.0,>=2.25->conan->openubmc-bingo) (2025.1.31) Requirement already satisfied: wcwidth in /usr/local/lib/python3.12/dist-packages (from prettytable->pyecharts->openubmc-bingo) (0.2.13) WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv detect_api: Found cc=gcc- 9.5.0 detect_api: gcc>=5, using the major as version detect_api: gcc C++ standard library: libstdc++11 Detected profile: [settings] arch=x86_64 build_type=Release compiler=gcc compiler.cppstd=gnu14 compiler.libcxx=libstdc++11 compiler.version=9 os=Linux WARN: This profile is a guess of your environment, please check it. WARN: The output of this command is not guaranteed to be stable and can change in future Conan versions. WARN: Use your own profile files for stability. Saving detected profile to /root/.conan2/profiles/default Removed remotes: conancenter: https://center2.conan.io [Verify SSL: True, Enabled: True] 请输入conan仓的用户名: molin_peng 请输入conan仓的密码: Connecting to remote 'openubmc_sdk' anonymously Authenticated in remote 'openubmc_sdk' with user 'molin_peng' Changed user of remote 'openubmc_sdk' from 'None' (anonymous) to 'molin_peng' (authenticated) Connecting to remote 'openubmc_opensource' anonymously Authenticated in remote 'openubmc_opensource' with user 'molin_peng' Changed user of remote 'openubmc_opensource' from 'None' (anonymous) to 'molin_peng' (authenticated) Archive: /home/workspace/manifest/./bmc_sdk.zip inflating: dependencies.tar.gz creating: hpm_tools/ inflating: hpm_tools/hpmimage inflating: hpm_tools/filesizecheck inflating: hpm_tools/gpp_header inflating: LICENSE.txt inflating: lua-format inflating: Open Source Software Notice.docx creating: rtos_compiler/ inflating: rtos_compiler/hcc_arm64le.tar.gz inflating: rtos_compiler/rtos_kernelspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm inflating: rtos_compiler/rtos_base-208.9.1.SPC0100-20250904204129.i586.rpm inflating: rtos_compiler/rtos_libc_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm inflating: rtos_compiler/rtos_lkp-208.9.1.SPC0100-20250904204129.i586.rpm inflating: rtos_compiler/rtos_userspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm creating: sdk/ inflating: sdk/Hi1711_boot_4096_pmode.bin inflating: sdk/hi1711sdk.tar.gz inflating: sdk/rtos.tar.gz inflating: sdk/Hi1711_boot_4096_pmode_debug.bin inflating: sdk/Hi1711_boot_4096_debug.bin inflating: sdk/Hi1711_boot_4096.bin changed 1 package in 2s npm notice npm notice New major version of npm available! 10.8.2 -> 11.7.0 npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.7.0 npm notice To update run: npm install -g npm@11.7.0 npm notice copying : node/20.18.0 installed : v20.18.0 (with npm 10.8.2) changed 13 packages in 5s 22 packages are looking for funding run `npm fund` for details >> whoami root 未检测到/opt/RTOS目录,可能未安装构建工具,请正确安装构建工具(可以manifest仓执行init.py或bingo build) conan版本: 2.13.0 已知参数: ['-t', 'install_sdk', '-b', 'openUBMC', '-ucc'] 调试框架: None, 构建参数: Namespace(board_name='openUBMC', build_type='debug', from_source=False, stage='dev', verbose=False, update_conan_cache=True, remote=None, zip_code=None, supporte_code='default', enable_qemu=False, qemu_in=False, coverage=False, asan=False, profile='', enable_luajit=True, debug_frame=None, debug_task=None, version='', target='install_sdk', deploy=False) 单板源配置路径: /home/workspace/manifest/build/product/BMC/openUBMC 复制单板的 manifest 目录从 /home/workspace/manifest/build/product/BMC/openUBMC 到 /home/workspace/manifest/temp/board_openUBMC >> rm -rf /home/workspace/manifest/temp/board_openUBMC >> cp -rf /home/workspace/manifest/build/product/BMC/openUBMC /home/workspace/manifest/temp/board_openUBMC 不能从 yaml 文件中获取到键值 base/show_version, 没有相关配置 不能从 yaml 文件中获取到键值 tosupporte/default/show_version, 没有相关配置 >> conan remote list 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 base/profile, 没有相关配置 未开启hpm加密配置 不能从 yaml 文件中获取到键值 platform, 没有相关配置 测试sudo是否正常执行 >> ls . sudo命令正常执行 创建新目标 install_sdk 构建计划表 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> 根据目标开始配置 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> board name: openUBMC from source: False build type: debug target: install_sdk qemu: False partner mode: True build path: /home/workspace/manifest/temp/build_openUBMC_debug_dev rootfs path: /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root cache path: /home/workspace/manifest/temp/build_openUBMC_debug_dev/cache work out: /home/workspace/manifest/temp/build_openUBMC_debug_dev/output board path: /home/workspace/manifest/temp/board_openUBMC temp path: /home/workspace/manifest/temp manufacture_code: None tosupporte_code: default <<<<<<<<<<<<<<<<<<<<<<<<<<<<< 根据目标配置结束 <<<<<<<<<<<<<<<<<<<<<<<<<<<<< 任务 work.prepare_env 开始 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 >> rm -rf /root/.conan2/profiles/profile.dt.ini >> rm -rf /root/.conan2/profiles/profile.ini >> rm -rf /root/.conan2/profiles/profile.luajit.ini >> cp -rf /home/workspace/manifest/build/profiles/. /root/.conan2/profiles >> conan remote remove conancenter >> xmllint --version >> ls /usr/bin/tclsh >> ls /usr/bin/w3m 切换工作目录到: /home/workspace/manifest/temp/board_openUBMC 不能从 yaml 文件中获取到键值 base/signature/simple_signer_server, 没有相关配置 不能从 yaml 文件中获取到键值 base/signature/certificates, 没有相关配置 复制文件 /home/workspace/manifest/build/product/ca/rootca.crl 到 cms.crl 复制 /home/workspace/manifest/build/product/ca/rootca.crl 到 cms.crl 不能从 yaml 文件中获取到键值 pre_download, 没有相关配置 任务 work.prepare_env 完成 任务 task_download_buildtools 开始 任务 task_download_dependency 开始 任务 work.task_prepare_tools 开始 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 开始下载依赖组件 ... 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 从缓存目录/root/sdk复制sdk和rtos二进制文件 >> cp -rf /root/sdk/. /home/workspace/manifest/temp/tools/sdk 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 移除下载路径: /home/workspace/manifest/temp/tools/rtos-sdk-arm64 >> rm -rf /home/workspace/manifest/temp/tools/rtos-sdk-arm64 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 开始下载依赖工具... 从缓存目录/root/rtos_compiler复制编译器工具 >> cp -rf /root/rtos_compiler/. /home/workspace/manifest/temp/tools/rtos-sdk-arm64 任务 work.task_prepare_tools 完成 下载依赖组件结束 >> find /home/workspace/manifest/temp/tools/sdk -type f | xargs sha256sum | awk '{print $1}' | sort >> cp -rf /home/workspace/manifest/temp/tools/sdk /home/workspace/manifest/temp/build_openUBMC_debug_dev/sdk 移动依赖组件结束 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/sdk >> rm -rf /opt/sdk.sha256 >> rm -rf /opt/hi171x_sdk/ >> rm -rf /opt/hi1711sdk >> mkdir -p /opt/hi171x_sdk/ >> tar -xzf hi1711sdk.tar.gz -C /opt/hi171x_sdk/ Module.symvers 下载依赖工具结束 >> find /home/workspace/manifest/temp/tools/rtos-sdk-arm64 -type f | xargs sha256sum | awk '{print $1}' | sort >> ln -s /opt/hi171x_sdk/ /opt/hi1711sdk >> cp -af /home/workspace/manifest/temp/tools/sdk_new.sha256 /opt/sdk.sha256 >> chmod a+r /opt/sdk.sha256 任务 task_download_dependency 完成 切换工作目录到: /home/workspace/manifest/temp/tools/rtos-sdk-arm64 删除目录 /opt/RTOS >> rm -rf /opt/buildtools.sha256 >> rm -rf /opt/RTOS 安装 rpm 包 安装 rtos_libc_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm >> rpm2cpio rtos_libc_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm | sudo cpio -id -D / 154540 blocks 安装 rtos_lkp-208.9.1.SPC0100-20250904204129.i586.rpm >> rpm2cpio rtos_lkp-208.9.1.SPC0100-20250904204129.i586.rpm | sudo cpio -id -D / 4961 blocks 安装 rtos_userspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm >> rpm2cpio rtos_userspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm | sudo cpio -id -D / cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/common_func.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/dlsetenv.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_inner.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9be_5.10_ek_tiny.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_ar.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_mini.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_minor.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_mini.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_pro_wlan.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_tiny.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32v5le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64be_5.10_ek_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_ics.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_inner.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_aires.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_micro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro_cci.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppc64e5500be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce300be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500be_5.10_ek_preempt_ip.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500mcbe_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_check_args.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_merge_sysroot.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_parse_args.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_sdk_env.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_set_env.sh not created: newer or same age version exists 375918 blocks 安装 rtos_kernelspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm >> rpm2cpio rtos_kernelspace_sysroots-arm64le_5.10_ek_preempt_pro-208.9.1.SPC0100-20250904204129.i586.rpm | sudo cpio -id -D / cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnu-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/aarch64-target-linux-gnuilp32-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-addr2line not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-as not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-c++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-c++filt not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-cpp not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-g++ not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcc not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcc-ar not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gcov not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-gprof not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ld not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-nm not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-objcopy not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-objdump not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-ranlib not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-readelf not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-size not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-strings not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-strip not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/arm-linux-gnueabi-wrapper.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/bin/common_func.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/sdk/lib/gcc-plugin/hcfi_plugin.so not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/sdk/lib/gcc-plugin/scs_plugin.so not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/sdk/usr/include/rtos/dma_dev_user_api.h not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/dlsetenv.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A15le_5.10_ek_preempt_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_inner.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A7le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9be_5.10_ek_tiny.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_ar.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_mini.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_minor.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_mini.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_preempt_pro_wlan.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32A9le_5.10_ek_tiny.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm32v5le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64be_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64be_5.10_ek_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_ics.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_inner.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_aires.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_micro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_micro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro_cci.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_preempt_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_arm64le_5.10_ek_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppc64e5500be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce300be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500be_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500be_5.10_ek_preempt_ip.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_ppce500mcbe_5.10_ek_preempt.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek_pro.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/init.d/sdk_init_x86_64_5.10_ek_pro_llvm.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_check_args.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_merge_sysroot.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_parse_args.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_sdk_env.sh not created: newer or same age version exists cpio: ./opt/RTOS/208.9.0/etc/rc.start/dl_set_env.sh not created: newer or same age version exists 919723 blocks 安装 rtos_base-208.9.1.SPC0100-20250904204129.i586.rpm >> rpm2cpio rtos_base-208.9.1.SPC0100-20250904204129.i586.rpm | sudo cpio -id -D / 23136 blocks 删除目录 /opt/hcc_arm64le >> rm -rf /opt/hcc_arm64le 解压 hcc_arm64le >> tar -xzf hcc_arm64le.tar.gz -C /opt 切换工作目录到: /home/workspace/manifest/build 不能从 yaml 文件中获取到键值 base/rtos_offering, 没有相关配置 >> cp -rf /opt/hcc_arm64le/aarch64-target-linux-gnu/lib64/ /opt/RTOS/208.9.0/arm64le_5.10_ek_preempt_pro/sdk/usr/ >> cp -af /home/workspace/manifest/temp/tools/buildtools_new.sha256 /opt/buildtools.sha256 >> chmod a+r /opt/buildtools.sha256 任务 task_download_buildtools 完成 任务 install_sdk 执行成功 Reading package lists... Done Building dependency tree... Done Reading state information... Done make is already the newest version (4.3-4.1build2). make set to manually installed. bzip2 is already the newest version (1.0.8-5.1build0.1). bzip2 set to manually installed. ninja-build is already the newest version (1.11.1-2). ninja-build set to manually installed. The following NEW packages will be installed: libattr1-dev libcap-ng-dev libfdt-dev libfdt1 libpixman-1-dev libslirp-dev libslirp0 pkg-config The following packages will be upgraded: libattr1 1 upgraded, 8 newly installed, 0 to remove and 149 not upgraded. Need to get 563 kB of archives. After this operation, 1888 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libattr1 amd64 1:2.5.2-1build1.1 [11.4 kB] Get:2 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libcap-ng-dev amd64 0.8.4-2build2 [29.9 kB] Get:3 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libpixman-1-dev amd64 0.42.2-1build1 [296 kB] Get:4 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libslirp0 amd64 4.7.0-1ubuntu3 [63.8 kB] Get:5 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libslirp-dev amd64 4.7.0-1ubuntu3 [79.0 kB] Get:6 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 pkg-config amd64 1.8.1-2build1 [7264 B] Get:7 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libattr1-dev amd64 1:2.5.2-1build1.1 [23.1 kB] Get:8 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libfdt1 amd64 1.7.0-2build1 [20.1 kB] Get:9 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libfdt-dev amd64 1.7.0-2build1 [32.4 kB] Fetched 563 kB in 1s (743 kB/s) debconf: delaying package configuration, since apt-utils is not installed (Reading database ... 85549 files and directories currently installed.) Preparing to unpack .../libattr1_1%3a2.5.2-1build1.1_amd64.deb ... Unpacking libattr1:amd64 (1:2.5.2-1build1.1) over (1:2.5.2-1build1) ... Setting up libattr1:amd64 (1:2.5.2-1build1.1) ... Selecting previously unselected package libcap-ng-dev:amd64. (Reading database ... 85549 files and directories currently installed.) Preparing to unpack .../0-libcap-ng-dev_0.8.4-2build2_amd64.deb ... Unpacking libcap-ng-dev:amd64 (0.8.4-2build2) ... Selecting previously unselected package libpixman-1-dev:amd64. Preparing to unpack .../1-libpixman-1-dev_0.42.2-1build1_amd64.deb ... Unpacking libpixman-1-dev:amd64 (0.42.2-1build1) ... Selecting previously unselected package libslirp0:amd64. Preparing to unpack .../2-libslirp0_4.7.0-1ubuntu3_amd64.deb ... Unpacking libslirp0:amd64 (4.7.0-1ubuntu3) ... Selecting previously unselected package libslirp-dev:amd64. Preparing to unpack .../3-libslirp-dev_4.7.0-1ubuntu3_amd64.deb ... Unpacking libslirp-dev:amd64 (4.7.0-1ubuntu3) ... Selecting previously unselected package pkg-config:amd64. Preparing to unpack .../4-pkg-config_1.8.1-2build1_amd64.deb ... Unpacking pkg-config:amd64 (1.8.1-2build1) ... Selecting previously unselected package libattr1-dev:amd64. Preparing to unpack .../5-libattr1-dev_1%3a2.5.2-1build1.1_amd64.deb ... Unpacking libattr1-dev:amd64 (1:2.5.2-1build1.1) ... Selecting previously unselected package libfdt1:amd64. Preparing to unpack .../6-libfdt1_1.7.0-2build1_amd64.deb ... Unpacking libfdt1:amd64 (1.7.0-2build1) ... Selecting previously unselected package libfdt-dev:amd64. Preparing to unpack .../7-libfdt-dev_1.7.0-2build1_amd64.deb ... Unpacking libfdt-dev:amd64 (1.7.0-2build1) ... Setting up libpixman-1-dev:amd64 (0.42.2-1build1) ... Setting up libattr1-dev:amd64 (1:2.5.2-1build1.1) ... Setting up libfdt1:amd64 (1.7.0-2build1) ... Setting up libfdt-dev:amd64 (1.7.0-2build1) ... Setting up pkg-config:amd64 (1.8.1-2build1) ... Setting up libslirp0:amd64 (4.7.0-1ubuntu3) ... Setting up libcap-ng-dev:amd64 (0.8.4-2build2) ... Setting up libslirp-dev:amd64 (4.7.0-1ubuntu3) ... Processing triggers for libc-bin (2.39-0ubuntu8.4) ... Get:1 http://mirrors.huaweicloud.com/ubuntu plucky InRelease [265 kB] Hit:2 http://mirrors.huaweicloud.com/ubuntu noble InRelease Hit:3 http://mirrors.huaweicloud.com/ubuntu noble-updates InRelease Hit:4 http://mirrors.huaweicloud.com/ubuntu noble-backports InRelease Hit:5 http://mirrors.huaweicloud.com/ubuntu noble-security InRelease Get:6 http://mirrors.huaweicloud.com/ubuntu plucky/restricted amd64 Packages [66.2 kB] Get:7 http://mirrors.huaweicloud.com/ubuntu plucky/main amd64 Packages [1862 kB] Get:8 http://mirrors.huaweicloud.com/ubuntu plucky/multiverse amd64 Packages [322 kB] Get:9 http://mirrors.huaweicloud.com/ubuntu plucky/universe amd64 Packages [20.3 MB] Fetched 22.8 MB in 4s (6187 kB/s) Reading package lists... Done W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: libcapstone5 0 upgraded, 1 newly installed, 0 to remove and 626 not upgraded. Need to get 934 kB of archives. After this operation, 9476 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu plucky/universe amd64 libcapstone5 amd64 5.0.5-1 [934 kB] Fetched 934 kB in 1s (1540 kB/s) debconf: delaying package configuration, since apt-utils is not installed Selecting previously unselected package libcapstone5:amd64. (Reading database ... 85643 files and directories currently installed.) Preparing to unpack .../libcapstone5_5.0.5-1_amd64.deb ... Unpacking libcapstone5:amd64 (5.0.5-1) ... Setting up libcapstone5:amd64 (5.0.5-1) ... Processing triggers for libc-bin (2.39-0ubuntu8.4) ... W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (universe/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (restricted/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/ubuntu.sources:1 and /etc/apt/sources.list.d/ubuntu.sources:2 Hit:1 http://mirrors.huaweicloud.com/ubuntu noble InRelease Hit:2 http://mirrors.huaweicloud.com/ubuntu noble-updates InRelease Hit:3 http://mirrors.huaweicloud.com/ubuntu noble-backports InRelease Hit:4 http://mirrors.huaweicloud.com/ubuntu noble-security InRelease Reading package lists... Done Reading package lists... Done Building dependency tree... Done Reading state information... Done xdg-utils is already the newest version (1.1.3-4.1ubuntu3). xdg-utils set to manually installed. The following additional packages will be installed: bc desktop-file-utils iproute2 libatm1t64 libbpf1 libmnl0 libxtables12 nginx-common pulseaudio-utils Suggested packages: iproute2-doc fcgiwrap nginx-doc ssl-cert avahi-daemon pulseaudio imagemagick The following NEW packages will be installed: bc desktop-file-utils iproute2 libatm1t64 libbpf1 libmnl0 libxtables12 nginx nginx-common pulseaudio-utils wslu 0 upgraded, 11 newly installed, 0 to remove and 149 not upgraded. Need to get 2222 kB of archives. After this operation, 6413 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libbpf1 amd64 1:1.3.0-2build2 [166 kB] Get:2 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libmnl0 amd64 1.0.5-2build1 [12.3 kB] Get:3 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libxtables12 amd64 1.8.10-3ubuntu2 [35.7 kB] Get:4 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 iproute2 amd64 6.1.0-1ubuntu6.2 [1120 kB] Get:5 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libatm1t64 amd64 1:2.5.1-5.1build1 [22.9 kB] Get:6 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 bc amd64 1.07.1-3ubuntu4 [85.3 kB] Get:7 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 desktop-file-utils amd64 0.27-2build1 [53.8 kB] Get:8 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 nginx-common all 1.24.0-2ubuntu7.5 [43.4 kB] Get:9 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 nginx amd64 1.24.0-2ubuntu7.5 [520 kB] Get:10 http://mirrors.huaweicloud.com/ubuntu noble-updates/universe amd64 pulseaudio-utils amd64 1:16.1+dfsg1-2ubuntu10.1 [73.5 kB] Get:11 http://mirrors.huaweicloud.com/ubuntu noble/universe amd64 wslu amd64 3.2.3-0ubuntu3 [89.7 kB] Fetched 2222 kB in 8s (274 kB/s) debconf: delaying package configuration, since apt-utils is not installed Selecting previously unselected package libbpf1:amd64. (Reading database ... 85647 files and directories currently installed.) Preparing to unpack .../00-libbpf1_1%3a1.3.0-2build2_amd64.deb ... Unpacking libbpf1:amd64 (1:1.3.0-2build2) ... Selecting previously unselected package libmnl0:amd64. Preparing to unpack .../01-libmnl0_1.0.5-2build1_amd64.deb ... Unpacking libmnl0:amd64 (1.0.5-2build1) ... Selecting previously unselected package libxtables12:amd64. Preparing to unpack .../02-libxtables12_1.8.10-3ubuntu2_amd64.deb ... Unpacking libxtables12:amd64 (1.8.10-3ubuntu2) ... Selecting previously unselected package iproute2. Preparing to unpack .../03-iproute2_6.1.0-1ubuntu6.2_amd64.deb ... Unpacking iproute2 (6.1.0-1ubuntu6.2) ... Selecting previously unselected package libatm1t64:amd64. Preparing to unpack .../04-libatm1t64_1%3a2.5.1-5.1build1_amd64.deb ... Unpacking libatm1t64:amd64 (1:2.5.1-5.1build1) ... Selecting previously unselected package bc. Preparing to unpack .../05-bc_1.07.1-3ubuntu4_amd64.deb ... Unpacking bc (1.07.1-3ubuntu4) ... Selecting previously unselected package desktop-file-utils. Preparing to unpack .../06-desktop-file-utils_0.27-2build1_amd64.deb ... Unpacking desktop-file-utils (0.27-2build1) ... Selecting previously unselected package nginx-common. Preparing to unpack .../07-nginx-common_1.24.0-2ubuntu7.5_all.deb ... Unpacking nginx-common (1.24.0-2ubuntu7.5) ... Selecting previously unselected package nginx. Preparing to unpack .../08-nginx_1.24.0-2ubuntu7.5_amd64.deb ... Unpacking nginx (1.24.0-2ubuntu7.5) ... Selecting previously unselected package pulseaudio-utils. Preparing to unpack .../09-pulseaudio-utils_1%3a16.1+dfsg1-2ubuntu10.1_amd64.deb ... Unpacking pulseaudio-utils (1:16.1+dfsg1-2ubuntu10.1) ... Selecting previously unselected package wslu. Preparing to unpack .../10-wslu_3.2.3-0ubuntu3_amd64.deb ... Unpacking wslu (3.2.3-0ubuntu3) ... Setting up libatm1t64:amd64 (1:2.5.1-5.1build1) ... Setting up desktop-file-utils (0.27-2build1) ... Setting up bc (1.07.1-3ubuntu4) ... Setting up nginx-common (1.24.0-2ubuntu7.5) ... debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /usr/lib/systemd/system/nginx.service. Setting up pulseaudio-utils (1:16.1+dfsg1-2ubuntu10.1) ... Setting up libmnl0:amd64 (1.0.5-2build1) ... Setting up libxtables12:amd64 (1.8.10-3ubuntu2) ... Setting up wslu (3.2.3-0ubuntu3) ... update-alternatives: using /usr/bin/wslview to provide /usr/bin/x-www-browser (x-www-browser) in auto mode update-alternatives: using /usr/bin/wslview to provide /usr/bin/www-browser (www-browser) in auto mode Setting up libbpf1:amd64 (1:1.3.0-2build2) ... Setting up iproute2 (6.1.0-1ubuntu6.2) ... debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline Setting up nginx (1.24.0-2ubuntu7.5) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Processing triggers for libc-bin (2.39-0ubuntu8.4) ... --2026-01-06 14:04:10-- https://cangjie-lang.cn/v1/files/auth/downLoad?nsId=142267&fileName=Cangjie-0.53.13-linux_x64.tar.gz&objectKey=6719f1eb3af6947e3c6af327 Resolving cangjie-lang.cn (cangjie-lang.cn)... 123.249.12.207 Connecting to cangjie-lang.cn (cangjie-lang.cn)|123.249.12.207|:443... connected. HTTP request sent, awaiting response... 200 OK Cookie coming from cangjie-lang.cn attempted to set domain to csdn.net Cookie coming from cangjie-lang.cn attempted to set domain to csdn.net Length: 389256516 (371M) [application/octet-stream] Saving to: ‘Cangjie-0.53.13-linux_x64.tar.gz’ Cangjie-0.53.13-linux_x64.tar.gz 100%[==============================================================================>] 371.22M 3.17MB/s in 62s 2026-01-06 14:05:13 (5.99 MB/s) - ‘Cangjie-0.53.13-linux_x64.tar.gz’ saved [389256516/389256516] --2026-01-06 14:05:19-- https://repo.openubmc.cn/latest/tools/BMC%20Studio.zip Resolving repo.openubmc.cn (repo.openubmc.cn)... 117.68.33.57 Connecting to repo.openubmc.cn (repo.openubmc.cn)|117.68.33.57|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 16818912 (16M) [application/zip] Saving to: ‘studio.zip’ studio.zip 100%[==============================================================================>] 16.04M 10.7MB/s in 1.5s 2026-01-06 14:05:22 (10.7 MB/s) - ‘studio.zip’ saved [16818912/16818912] Archive: ./studio.zip inflating: bmc-studio-0.0.5.vsix inflating: bmc-studio-1.2.0.250928.deb inflating: LICENSE.txt Selecting previously unselected package bmc-studio. (Reading database ... 86001 files and directories currently installed.) Preparing to unpack .../bmc-studio-1.2.0.250928.deb ... preinst called with argument: install debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline preinst called by interaction Configuring bmc-studio ---------------------- Please read the following license agreement carefully See https://openubmc.cn/easysoftware/software-license for the complete license text. Do you accept the license agreement? If you reject, the installation will be aborted. License Agreement - Must Accept to Continue [yes/no] yes Unpacking bmc-studio (1.2.0.250928) ... dpkg: dependency problems prevent configuration of bmc-studio: bmc-studio depends on sqlite3; however: Package sqlite3 is not installed. bmc-studio depends on libssh2-1; however: Package libssh2-1 is not installed. bmc-studio depends on libtelnet2; however: Package libtelnet2 is not installed. dpkg: error processing package bmc-studio (--install): dependency problems - leaving unconfigured Errors were encountered while processing: bmc-studio Reading package lists... Done Building dependency tree... Done Reading state information... Done Correcting dependencies... Done The following additional packages will be installed: libsqlite3-0 libssh2-1t64 libtelnet2 sqlite3 Suggested packages: sqlite3-doc The following NEW packages will be installed: libssh2-1t64 libtelnet2 sqlite3 The following packages will be upgraded: libsqlite3-0 1 upgraded, 3 newly installed, 0 to remove and 148 not upgraded. 1 not fully installed or removed. Need to get 986 kB of archives. After this operation, 1064 kB of additional disk space will be used. Get:1 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 libsqlite3-0 amd64 3.45.1-1ubuntu2.5 [701 kB] Get:2 http://mirrors.huaweicloud.com/ubuntu noble-updates/main amd64 sqlite3 amd64 3.45.1-1ubuntu2.5 [144 kB] Get:3 http://mirrors.huaweicloud.com/ubuntu noble/main amd64 libssh2-1t64 amd64 1.11.0-4.1build2 [120 kB] Get:4 http://mirrors.huaweicloud.com/ubuntu noble/universe amd64 libtelnet2 amd64 0.21-5build1 [21.2 kB] Fetched 986 kB in 1s (1391 kB/s) debconf: delaying package configuration, since apt-utils is not installed (Reading database ... 86158 files and directories currently installed.) Preparing to unpack .../libsqlite3-0_3.45.1-1ubuntu2.5_amd64.deb ... Unpacking libsqlite3-0:amd64 (3.45.1-1ubuntu2.5) over (3.45.1-1ubuntu2.1) ... Selecting previously unselected package sqlite3. Preparing to unpack .../sqlite3_3.45.1-1ubuntu2.5_amd64.deb ... Unpacking sqlite3 (3.45.1-1ubuntu2.5) ... Selecting previously unselected package libssh2-1t64:amd64. Preparing to unpack .../libssh2-1t64_1.11.0-4.1build2_amd64.deb ... Unpacking libssh2-1t64:amd64 (1.11.0-4.1build2) ... Selecting previously unselected package libtelnet2:amd64. Preparing to unpack .../libtelnet2_0.21-5build1_amd64.deb ... Unpacking libtelnet2:amd64 (0.21-5build1) ... Setting up libsqlite3-0:amd64 (3.45.1-1ubuntu2.5) ... Setting up libssh2-1t64:amd64 (1.11.0-4.1build2) ... Setting up sqlite3 (3.45.1-1ubuntu2.5) ... Setting up libtelnet2:amd64 (0.21-5build1) ... Setting up bmc-studio (1.2.0.250928) ... postinst called with argument: configure debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline current bmc-studio/accept-license is true License accepted. Proceeding with installation... BMC Studio installed successfully. Processing triggers for libc-bin (2.39-0ubuntu8.4) ... (Reading database ... 86178 files and directories currently installed.) Preparing to unpack .../bmc-studio-1.2.0.250928.deb ... prerm called with argument: upgrade preinst called with argument: upgrade debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline The BMC open protocol has been agreed. Upgrading bmc-studio Unpacking bmc-studio (1.2.0.250928) over (1.2.0.250928) ... Setting up bmc-studio (1.2.0.250928) ... postinst called with argument: configure debconf: unable to initialize frontend: Dialog debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.) debconf: falling back to frontend: Readline current bmc-studio/accept-license is true License accepted. Proceeding with installation... BMC Studio installed successfully. root@docker-desktop:/home/workspace/manifest# root@docker-desktop:/home/workspace/manifest# conan remote list openubmc_sdk: https://conan.openubmc.cn/bmc_sdk_25.09 [Verify SSL: False, Enabled: True] openubmc_opensource: https://conan.openubmc.cn/openubmc_opensource [Verify SSL: False, Enabled: True] root@docker-desktop:/home/workspace/manifest# bingo build >> whoami root conan版本: 2.13.0 已知参数: [] 调试框架: None, 构建参数: Namespace(board_name='openUBMC', build_type='debug', from_source=False, stage='dev', verbose=False, update_conan_cache=False, remote=None, zip_code=None, supporte_code='default', enable_qemu=False, qemu_in=False, coverage=False, asan=False, profile='', enable_luajit=True, debug_frame=None, debug_task=None, version='', target='personal', deploy=False) 单板源配置路径: /home/workspace/manifest/build/product/BMC/openUBMC 复制单板的 manifest 目录从 /home/workspace/manifest/build/product/BMC/openUBMC 到 /home/workspace/manifest/temp/board_openUBMC >> rm -rf /home/workspace/manifest/temp/board_openUBMC >> cp -rf /home/workspace/manifest/build/product/BMC/openUBMC /home/workspace/manifest/temp/board_openUBMC 不能从 yaml 文件中获取到键值 base/show_version, 没有相关配置 不能从 yaml 文件中获取到键值 tosupporte/default/show_version, 没有相关配置 >> conan remote list 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 archive, 没有相关配置 不能从 yaml 文件中获取到键值 base/profile, 没有相关配置 未开启hpm加密配置 不能从 yaml 文件中获取到键值 platform, 没有相关配置 测试sudo是否正常执行 >> ls . sudo命令正常执行 创建新目标 personal 构建计划表 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> 根据目标开始配置 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> board name: openUBMC from source: False build type: debug target: personal qemu: False partner mode: True build path: /home/workspace/manifest/temp/build_openUBMC_debug_dev rootfs path: /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root cache path: /home/workspace/manifest/temp/build_openUBMC_debug_dev/cache work out: /home/workspace/manifest/temp/build_openUBMC_debug_dev/output board path: /home/workspace/manifest/temp/board_openUBMC temp path: /home/workspace/manifest/temp manufacture_code: None tosupporte_code: default <<<<<<<<<<<<<<<<<<<<<<<<<<<<< 根据目标配置结束 <<<<<<<<<<<<<<<<<<<<<<<<<<<<< 任务 work.prepare_env 开始 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 >> rm -rf /root/.conan2/profiles/profile.dt.ini >> rm -rf /root/.conan2/profiles/profile.ini >> rm -rf /root/.conan2/profiles/profile.luajit.ini >> cp -rf /home/workspace/manifest/build/profiles/. /root/.conan2/profiles >> conan remote remove conancenter >> xmllint --version >> ls /usr/bin/tclsh >> ls /usr/bin/w3m 切换工作目录到: /home/workspace/manifest/temp/board_openUBMC 不能从 yaml 文件中获取到键值 base/signature/simple_signer_server, 没有相关配置 不能从 yaml 文件中获取到键值 base/signature/certificates, 没有相关配置 复制文件 /home/workspace/manifest/build/product/ca/rootca.crl 到 cms.crl 复制 /home/workspace/manifest/build/product/ca/rootca.crl 到 cms.crl 不能从 yaml 文件中获取到键值 pre_download, 没有相关配置 任务 work.prepare_env 完成 任务 work.build.download 开始 任务 task_download_dependency 开始 任务 task_download_buildtools 开始 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 开始下载依赖组件 ... 从缓存目录/root/sdk复制sdk和rtos二进制文件 >> cp -rf /root/sdk/. /home/workspace/manifest/temp/tools/sdk 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 移除下载路径: /home/workspace/manifest/temp/tools/rtos-sdk-arm64 >> rm -rf /home/workspace/manifest/temp/tools/rtos-sdk-arm64 开始下载依赖工具... 从缓存目录/root/rtos_compiler复制编译器工具 >> cp -rf /root/rtos_compiler/. /home/workspace/manifest/temp/tools/rtos-sdk-arm64 下载依赖组件结束 >> find /home/workspace/manifest/temp/tools/sdk -type f | xargs sha256sum | awk '{print $1}' | sort >> cp -rf /home/workspace/manifest/temp/tools/sdk /home/workspace/manifest/temp/build_openUBMC_debug_dev/sdk 移动依赖组件结束 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/sdk sdk版本匹配 任务 task_download_dependency 完成 下载依赖工具结束 >> find /home/workspace/manifest/temp/tools/rtos-sdk-arm64 -type f | xargs sha256sum | awk '{print $1}' | sort buildtools版本匹配,跳过安装 任务 task_download_buildtools 完成 任务 work.build.download 完成 任务 work.build.conan 开始 不能从 yaml 文件中获取到键值 base/vendor, 没有相关配置 >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/openubmc >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/rootfs >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 尝试清理conan组件锁 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc/all >> sed -i 's/openubmc/openubmc/g' conanfile.py 包版本号: 25.09.00.01 不能从 yaml 文件中获取到键值 debug_dependencies, 没有相关配置 不能从 yaml 文件中获取到键值 base/sdk, 没有相关配置 获取到依赖: huawei_secure_c/1.0.2@openubmc/stable 获取到依赖: kmc/24.1.5.b001_004@openubmc/stable 获取到依赖: signature_verify_cbb_library/25.0.0.b002_001@openubmc/stable 获取到依赖: sqlite3/3.42.0-3.oe2403sp1-h2.b001@openubmc/stable 获取到依赖: openssh/9.6p1-3.oe2403sp1-h8@openubmc/stable 获取到依赖: nginx/1.27.4-htrunk7@openubmc/stable 获取到依赖: json/b003_00004@openubmc/stable 获取到依赖: liblogger/1.90.5@openubmc/stable 获取到依赖: libsomp/1.90.27@openubmc/stable 获取到依赖: libmc4lua/1.90.92@openubmc/stable 获取到依赖: libiam/1.90.16@openubmc/stable 获取到依赖: certificate/1.20.24@openubmc/stable 获取到依赖: key_mgmt/1.90.7@openubmc/stable 获取到依赖: cyrus_sasl/2.1.28-h1.computing.ibmc.r1_001@openubmc/stable 获取到依赖: openldap/2.6.6-htrunk1_003@openubmc/stable 获取到依赖: hisec_tls/25.0.1.b002@openubmc/stable 获取到依赖: vpp/v300r025c10spc002b100_001@openubmc/stable 获取到依赖: iam/1.0.12@openubmc/stable 获取到依赖: maca/1.90.18@openubmc/stable 获取到依赖: soctrl/1.90.10@openubmc/stable 获取到依赖: persistence/1.90.14@openubmc/stable 获取到依赖: net-snmp/5.9.3-4.oe2403sp1-htrunk6.b004@openubmc/stable 获取到依赖: event/1.80.19@openubmc/stable 获取到依赖: editline_library_-_libedit/3.1-20250104-h2.5@openubmc/stable 获取到依赖: event_policy/1.90.18@openubmc/stable 获取到依赖: firmware_mgmt/1.70.115@openubmc/stable 获取到依赖: cli/1.90.23@openubmc/stable 获取到依赖: hwdiscovery/1.90.6@openubmc/stable 获取到依赖: bmc_network/1.80.62@openubmc/stable 获取到依赖: bmc_time/1.70.61@openubmc/stable 获取到依赖: hwproxy/1.90.33@openubmc/stable 获取到依赖: libsoc_adapter/1.90.42@openubmc/stable 获取到依赖: runtime_accessor/1.90.40@openubmc/stable 获取到依赖: oms/1.90.29@openubmc/stable 获取到依赖: nsm/1.90.16@openubmc/stable 获取到依赖: ipmi_core/1.80.41@openubmc/stable 获取到依赖: rmcpd/1.90.70@openubmc/stable 获取到依赖: bmc_upgrade/1.70.56@openubmc/stable 获取到依赖: compute/1.80.76@openubmc/stable 获取到依赖: bmc_soc/1.80.25@openubmc/stable 获取到依赖: redfish/1.90.25@openubmc/stable 获取到依赖: web_backend/1.90.15@openubmc/stable 获取到依赖: ddns/1.90.5@openubmc/stable 获取到依赖: lsnmp/1.30.8@openubmc/stable 获取到依赖: ntp/4.2.8p17-3.oe2403sp1-htrunk3-1@openubmc/stable 获取到依赖: libroute_mapper/1.90.12@openubmc/stable 获取到依赖: computing_component_raid/v100r001c00spc512b020_4@openubmc/stable 获取到依赖: libssh2/1.11.0-4.oe2403sp1@openubmc/stable 获取到依赖: curl/8.4.0-14.oe2403sp1-htrunk5@openubmc/stable 获取到依赖: lcurl/1.20.13@openubmc/stable 获取到依赖: libmgmt_protocol/1.80.43@openubmc/stable 获取到依赖: product_mgmt/1.90.11@openubmc/stable 获取到依赖: usb_entry/1.90.9@openubmc/stable 获取到依赖: lldpd/1.0.19-h1@openubmc/stable 获取到依赖: file_transfer/1.70.20@openubmc/stable 获取到依赖: libproto-mc4c/1.90.4@openubmc/stable 获取到依赖: libmdbc/1.80.2@openubmc/stable 获取到依赖: libmcc/1.90.7@openubmc/stable 获取到依赖: ssdp/1.80.5@openubmc/stable 获取到依赖: muparser/2.3.5@openubmc/stable 获取到依赖: mdbctl/1.90.4@openubmc/stable 获取到依赖: skynet/1.8.0.b001_006@openubmc/stable >> sed -i 's|^user.tools:skynet=.*|user.tools:skynet=skynet/1.8.0.b001_006@openubmc/stable|g' /root/.conan2/profiles/profile.ini >> sed -i 's|^user.tools:skynet=.*|user.tools:skynet=skynet/1.8.0.b001_006@openubmc/stable|g' /root/.conan2/profiles/profile.luajit.ini WARN: 根据manifest.yml配置,当前产品的enable_luajit配置为True,忽略命令行指定的-jit参数 获取到依赖: luajit/2.1.0.b015@openubmc/stable >> sed -i 's|^user.tools:luajit=.*|user.tools:luajit=luajit/2.1.0.b015@openubmc/stable|g' /root/.conan2/profiles/profile.ini >> sed -i 's|^user.tools:luajit=.*|user.tools:luajit=luajit/2.1.0.b015@openubmc/stable|g' /root/.conan2/profiles/profile.luajit.ini 获取到依赖: bmc_health/1.70.10@openubmc/stable 获取到依赖: secbox/24.1.8.b010_00004.b001@openubmc/stable 获取到依赖: boost/1.87.0.b003@openubmc/stable 获取到依赖: remote_console/1.90.18@openubmc/stable 获取到依赖: ums/1.80.17@openubmc/stable 获取到依赖: snmp/1.90.8@openubmc/stable 获取到依赖: libjpeg/9f.b001@openubmc/stable 获取到依赖: vpd/1.80.26@openubmc/stable 获取到依赖: mdb_interface/1.90.118@openubmc/stable 获取到依赖: fructrl/1.70.60@openubmc/stable 获取到依赖: sensor/1.70.79@openubmc/stable 获取到依赖: frudata/1.70.38@openubmc/stable 获取到依赖: rackmount/1.90.215@openubmc/stable 获取到依赖: hica/1.70.14@openubmc/stable 获取到依赖: rootfs_user/1.80.06@openubmc/stable 获取到依赖: lsw/1.70.10@openubmc/stable 获取到依赖: network_adapter/1.80.8@openubmc/stable 获取到依赖: chassis/1.80.14@openubmc/stable 获取到依赖: power_mgmt/1.70.117@openubmc/stable 获取到依赖: storage/1.80.117@openubmc/stable 获取到依赖: pcie_device/1.70.76@openubmc/stable 获取到依赖: thermal_mgmt/1.70.107@openubmc/stable 获取到依赖: libenergy/1.0.17@openubmc/stable 获取到依赖: manufacture/1.70.12@openubmc/stable 获取到依赖: bios/1.80.55@openubmc/stable 获取到依赖: general_hardware/1.80.55@openubmc/stable 获取到依赖: observability/1.90.24@openubmc/stable 获取到依赖: fluent-bit/3.2.0.b004@openubmc/stable 获取到依赖: libyaml/0.2.5.b002@openubmc/stable 获取到依赖: opentelemetry/1.13.0.015@openubmc/stable 获取到依赖: abseil/20250127.0.004@openubmc/stable 获取到依赖: grpc/1.33.1.005@openubmc/stable 获取到依赖: protobuf/3.14.0.005@openubmc/stable 获取到依赖: re2/2022-06-01.004@openubmc/stable 获取到依赖: c_ares/1.34.5.004@openubmc/stable 获取到依赖: opentelemetry-proto/1.1.0.001@openubmc/stable 获取到依赖: webui/1.90.58@openubmc/stable 获取到依赖: account/1.90.43@openubmc/stable 获取到依赖: mctpd/1.90.6@openubmc/stable 获取到依赖: profile_schema/1.70.45@openubmc/stable 获取到依赖: capability_proxy/1.80.8@openubmc/stable 获取到依赖: host_agent/1.60.30@openubmc/stable 获取到依赖: help/1.71.37@openubmc/stable >> conan cache path huawei_secure_c/1.0.2@openubmc/stable >> conan cache path kmc/24.1.5.b001_004@openubmc/stable >> conan cache path signature_verify_cbb_library/25.0.0.b002_001@openubmc/stable >> conan cache path sqlite3/3.42.0-3.oe2403sp1-h2.b001@openubmc/stable >> conan cache path openssh/9.6p1-3.oe2403sp1-h8@openubmc/stable >> conan download signature_verify_cbb_library/25.0.0.b002_001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download huawei_secure_c/1.0.2@openubmc/stable -r openubmc_sdk --only-recipe >> conan download kmc/24.1.5.b001_004@openubmc/stable -r openubmc_sdk --only-recipe >> conan download sqlite3/3.42.0-3.oe2403sp1-h2.b001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download openssh/9.6p1-3.oe2403sp1-h8@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path nginx/1.27.4-htrunk7@openubmc/stable >> conan cache path json/b003_00004@openubmc/stable >> conan cache path liblogger/1.90.5@openubmc/stable >> conan cache path libsomp/1.90.27@openubmc/stable >> conan cache path libmc4lua/1.90.92@openubmc/stable >> conan download nginx/1.27.4-htrunk7@openubmc/stable -r openubmc_sdk --only-recipe >> conan download liblogger/1.90.5@openubmc/stable -r openubmc_sdk --only-recipe >> conan download json/b003_00004@openubmc/stable -r openubmc_sdk --only-recipe >> conan download libsomp/1.90.27@openubmc/stable -r openubmc_sdk --only-recipe >> conan download libmc4lua/1.90.92@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libiam/1.90.16@openubmc/stable >> conan cache path certificate/1.20.24@openubmc/stable >> conan cache path key_mgmt/1.90.7@openubmc/stable >> conan cache path cyrus_sasl/2.1.28-h1.computing.ibmc.r1_001@openubmc/stable >> conan download libiam/1.90.16@openubmc/stable -r openubmc_sdk --only-recipe >> conan download certificate/1.20.24@openubmc/stable -r openubmc_sdk --only-recipe >> conan download cyrus_sasl/2.1.28-h1.computing.ibmc.r1_001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download key_mgmt/1.90.7@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path openldap/2.6.6-htrunk1_003@openubmc/stable >> conan download openldap/2.6.6-htrunk1_003@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path hisec_tls/25.0.1.b002@openubmc/stable >> conan cache path vpp/v300r025c10spc002b100_001@openubmc/stable >> conan cache path iam/1.0.12@openubmc/stable >> conan download hisec_tls/25.0.1.b002@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path maca/1.90.18@openubmc/stable >> conan download vpp/v300r025c10spc002b100_001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download iam/1.0.12@openubmc/stable -r openubmc_sdk --only-recipe >> conan download maca/1.90.18@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path soctrl/1.90.10@openubmc/stable Recipe not fount in openubmc_sdk: iam/1.0.12@openubmc/stable >> conan download iam/1.0.12@openubmc/stable -r openubmc_sdk --only-recipe >> conan download soctrl/1.90.10@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: iam/1.0.12@openubmc/stable >> conan download iam/1.0.12@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path persistence/1.90.14@openubmc/stable >> conan cache path net-snmp/5.9.3-4.oe2403sp1-htrunk6.b004@openubmc/stable >> conan cache path event/1.80.19@openubmc/stable >> conan download persistence/1.90.14@openubmc/stable -r openubmc_sdk --only-recipe >> conan download event/1.80.19@openubmc/stable -r openubmc_sdk --only-recipe >> conan download net-snmp/5.9.3-4.oe2403sp1-htrunk6.b004@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path editline_library_-_libedit/3.1-20250104-h2.5@openubmc/stable >> conan download editline_library_-_libedit/3.1-20250104-h2.5@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path event_policy/1.90.18@openubmc/stable >> conan download event_policy/1.90.18@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path firmware_mgmt/1.70.115@openubmc/stable >> conan cache path hwdiscovery/1.90.6@openubmc/stable >> conan cache path cli/1.90.23@openubmc/stable >> conan download hwdiscovery/1.90.6@openubmc/stable -r openubmc_sdk --only-recipe >> conan download cli/1.90.23@openubmc/stable -r openubmc_sdk --only-recipe >> conan download firmware_mgmt/1.70.115@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path bmc_network/1.80.62@openubmc/stable >> conan download bmc_network/1.80.62@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path bmc_time/1.70.61@openubmc/stable >> conan download bmc_time/1.70.61@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path hwproxy/1.90.33@openubmc/stable >> conan cache path libsoc_adapter/1.90.42@openubmc/stable >> conan cache path runtime_accessor/1.90.40@openubmc/stable >> conan download libsoc_adapter/1.90.42@openubmc/stable -r openubmc_sdk --only-recipe >> conan download hwproxy/1.90.33@openubmc/stable -r openubmc_sdk --only-recipe >> conan download runtime_accessor/1.90.40@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path oms/1.90.29@openubmc/stable >> conan download oms/1.90.29@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path nsm/1.90.16@openubmc/stable >> conan download nsm/1.90.16@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path ipmi_core/1.80.41@openubmc/stable >> conan cache path rmcpd/1.90.70@openubmc/stable >> conan cache path bmc_upgrade/1.70.56@openubmc/stable >> conan download rmcpd/1.90.70@openubmc/stable -r openubmc_sdk --only-recipe >> conan download ipmi_core/1.80.41@openubmc/stable -r openubmc_sdk --only-recipe >> conan download bmc_upgrade/1.70.56@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path compute/1.80.76@openubmc/stable >> conan download compute/1.80.76@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path bmc_soc/1.80.25@openubmc/stable >> conan download bmc_soc/1.80.25@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path redfish/1.90.25@openubmc/stable >> conan cache path ddns/1.90.5@openubmc/stable >> conan cache path web_backend/1.90.15@openubmc/stable >> conan download ddns/1.90.5@openubmc/stable -r openubmc_sdk --only-recipe >> conan download web_backend/1.90.15@openubmc/stable -r openubmc_sdk --only-recipe >> conan download redfish/1.90.25@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path lsnmp/1.30.8@openubmc/stable >> conan download lsnmp/1.30.8@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path ntp/4.2.8p17-3.oe2403sp1-htrunk3-1@openubmc/stable >> conan download ntp/4.2.8p17-3.oe2403sp1-htrunk3-1@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libroute_mapper/1.90.12@openubmc/stable >> conan cache path computing_component_raid/v100r001c00spc512b020_4@openubmc/stable >> conan cache path libssh2/1.11.0-4.oe2403sp1@openubmc/stable >> conan download computing_component_raid/v100r001c00spc512b020_4@openubmc/stable -r openubmc_sdk --only-recipe >> conan download libroute_mapper/1.90.12@openubmc/stable -r openubmc_sdk --only-recipe >> conan download libssh2/1.11.0-4.oe2403sp1@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path curl/8.4.0-14.oe2403sp1-htrunk5@openubmc/stable >> conan download curl/8.4.0-14.oe2403sp1-htrunk5@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path lcurl/1.20.13@openubmc/stable >> conan download lcurl/1.20.13@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libmgmt_protocol/1.80.43@openubmc/stable >> conan download libmgmt_protocol/1.80.43@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path product_mgmt/1.90.11@openubmc/stable >> conan cache path usb_entry/1.90.9@openubmc/stable >> conan download product_mgmt/1.90.11@openubmc/stable -r openubmc_sdk --only-recipe >> conan download usb_entry/1.90.9@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path lldpd/1.0.19-h1@openubmc/stable >> conan download lldpd/1.0.19-h1@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path file_transfer/1.70.20@openubmc/stable >> conan download file_transfer/1.70.20@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libproto-mc4c/1.90.4@openubmc/stable >> conan download libproto-mc4c/1.90.4@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libmdbc/1.80.2@openubmc/stable >> conan cache path libmcc/1.90.7@openubmc/stable >> conan download libmdbc/1.80.2@openubmc/stable -r openubmc_sdk --only-recipe >> conan download libmcc/1.90.7@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path ssdp/1.80.5@openubmc/stable >> conan download ssdp/1.80.5@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path muparser/2.3.5@openubmc/stable >> conan download muparser/2.3.5@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path mdbctl/1.90.4@openubmc/stable >> conan download mdbctl/1.90.4@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path skynet/1.8.0.b001_006@openubmc/stable >> conan download skynet/1.8.0.b001_006@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path luajit/2.1.0.b015@openubmc/stable >> conan download luajit/2.1.0.b015@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path bmc_health/1.70.10@openubmc/stable >> conan download bmc_health/1.70.10@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path secbox/24.1.8.b010_00004.b001@openubmc/stable >> conan download secbox/24.1.8.b010_00004.b001@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path boost/1.87.0.b003@openubmc/stable >> conan download boost/1.87.0.b003@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path remote_console/1.90.18@openubmc/stable >> conan download remote_console/1.90.18@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path ums/1.80.17@openubmc/stable >> conan cache path snmp/1.90.8@openubmc/stable >> conan download ums/1.80.17@openubmc/stable -r openubmc_sdk --only-recipe >> conan download snmp/1.90.8@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libjpeg/9f.b001@openubmc/stable >> conan cache path vpd/1.80.26@openubmc/stable >> conan download libjpeg/9f.b001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download vpd/1.80.26@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path mdb_interface/1.90.118@openubmc/stable >> conan cache path fructrl/1.70.60@openubmc/stable >> conan cache path sensor/1.70.79@openubmc/stable >> conan download fructrl/1.70.60@openubmc/stable -r openubmc_sdk --only-recipe >> conan download mdb_interface/1.90.118@openubmc/stable -r openubmc_sdk --only-recipe >> conan download sensor/1.70.79@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: vpd/1.80.26@openubmc/stable >> conan download vpd/1.80.26@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: mdb_interface/1.90.118@openubmc/stable >> conan download mdb_interface/1.90.118@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: fructrl/1.70.60@openubmc/stable >> conan download fructrl/1.70.60@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path frudata/1.70.38@openubmc/stable Recipe not fount in openubmc_sdk: vpd/1.80.26@openubmc/stable >> conan download vpd/1.80.26@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: sensor/1.70.79@openubmc/stable >> conan download sensor/1.70.79@openubmc/stable -r openubmc_sdk --only-recipe >> conan download frudata/1.70.38@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: fructrl/1.70.60@openubmc/stable >> conan download fructrl/1.70.60@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: mdb_interface/1.90.118@openubmc/stable >> conan download mdb_interface/1.90.118@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: sensor/1.70.79@openubmc/stable >> conan download sensor/1.70.79@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: frudata/1.70.38@openubmc/stable >> conan download frudata/1.70.38@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path rackmount/1.90.215@openubmc/stable Recipe not fount in openubmc_sdk: frudata/1.70.38@openubmc/stable >> conan download frudata/1.70.38@openubmc/stable -r openubmc_opensource --only-recipe >> conan download rackmount/1.90.215@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path hica/1.70.14@openubmc/stable >> conan cache path rootfs_user/1.80.06@openubmc/stable >> conan download hica/1.70.14@openubmc/stable -r openubmc_sdk --only-recipe >> conan download rootfs_user/1.80.06@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path lsw/1.70.10@openubmc/stable >> conan download lsw/1.70.10@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: rackmount/1.90.215@openubmc/stable >> conan download rackmount/1.90.215@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: hica/1.70.14@openubmc/stable >> conan download hica/1.70.14@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: lsw/1.70.10@openubmc/stable >> conan download lsw/1.70.10@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: rootfs_user/1.80.06@openubmc/stable >> conan download rootfs_user/1.80.06@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: rackmount/1.90.215@openubmc/stable >> conan download rackmount/1.90.215@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path network_adapter/1.80.8@openubmc/stable Recipe not fount in openubmc_sdk: rootfs_user/1.80.06@openubmc/stable >> conan download rootfs_user/1.80.06@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: hica/1.70.14@openubmc/stable >> conan download hica/1.70.14@openubmc/stable -r openubmc_opensource --only-recipe >> conan download network_adapter/1.80.8@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: lsw/1.70.10@openubmc/stable >> conan download lsw/1.70.10@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: network_adapter/1.80.8@openubmc/stable >> conan download network_adapter/1.80.8@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path chassis/1.80.14@openubmc/stable >> conan cache path power_mgmt/1.70.117@openubmc/stable >> conan download chassis/1.80.14@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: network_adapter/1.80.8@openubmc/stable >> conan download network_adapter/1.80.8@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path pcie_device/1.70.76@openubmc/stable >> conan cache path storage/1.80.117@openubmc/stable >> conan download power_mgmt/1.70.117@openubmc/stable -r openubmc_sdk --only-recipe >> conan download pcie_device/1.70.76@openubmc/stable -r openubmc_sdk --only-recipe >> conan download storage/1.80.117@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: chassis/1.80.14@openubmc/stable >> conan download chassis/1.80.14@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: power_mgmt/1.70.117@openubmc/stable >> conan download power_mgmt/1.70.117@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: pcie_device/1.70.76@openubmc/stable >> conan download pcie_device/1.70.76@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: storage/1.80.117@openubmc/stable >> conan download storage/1.80.117@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: chassis/1.80.14@openubmc/stable >> conan download chassis/1.80.14@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path thermal_mgmt/1.70.107@openubmc/stable Recipe not fount in openubmc_sdk: power_mgmt/1.70.117@openubmc/stable >> conan download power_mgmt/1.70.117@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: pcie_device/1.70.76@openubmc/stable >> conan download pcie_device/1.70.76@openubmc/stable -r openubmc_opensource --only-recipe >> conan download thermal_mgmt/1.70.107@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: storage/1.80.117@openubmc/stable >> conan download storage/1.80.117@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: thermal_mgmt/1.70.107@openubmc/stable >> conan download thermal_mgmt/1.70.107@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path libenergy/1.0.17@openubmc/stable Recipe not fount in openubmc_sdk: thermal_mgmt/1.70.107@openubmc/stable >> conan download thermal_mgmt/1.70.107@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path manufacture/1.70.12@openubmc/stable >> conan download libenergy/1.0.17@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path bios/1.80.55@openubmc/stable >> conan cache path general_hardware/1.80.55@openubmc/stable >> conan download manufacture/1.70.12@openubmc/stable -r openubmc_sdk --only-recipe >> conan download bios/1.80.55@openubmc/stable -r openubmc_sdk --only-recipe >> conan download general_hardware/1.80.55@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: manufacture/1.70.12@openubmc/stable >> conan download manufacture/1.70.12@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: bios/1.80.55@openubmc/stable >> conan download bios/1.80.55@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: general_hardware/1.80.55@openubmc/stable >> conan download general_hardware/1.80.55@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path observability/1.90.24@openubmc/stable >> conan cache path fluent-bit/3.2.0.b004@openubmc/stable >> conan download fluent-bit/3.2.0.b004@openubmc/stable -r openubmc_sdk --only-recipe >> conan download observability/1.90.24@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: manufacture/1.70.12@openubmc/stable >> conan download manufacture/1.70.12@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: bios/1.80.55@openubmc/stable >> conan download bios/1.80.55@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: general_hardware/1.80.55@openubmc/stable >> conan download general_hardware/1.80.55@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: fluent-bit/3.2.0.b004@openubmc/stable >> conan download fluent-bit/3.2.0.b004@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: observability/1.90.24@openubmc/stable >> conan download observability/1.90.24@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: observability/1.90.24@openubmc/stable >> conan download observability/1.90.24@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: fluent-bit/3.2.0.b004@openubmc/stable >> conan download fluent-bit/3.2.0.b004@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path libyaml/0.2.5.b002@openubmc/stable >> conan cache path opentelemetry/1.13.0.015@openubmc/stable >> conan cache path abseil/20250127.0.004@openubmc/stable >> conan download libyaml/0.2.5.b002@openubmc/stable -r openubmc_sdk --only-recipe >> conan download opentelemetry/1.13.0.015@openubmc/stable -r openubmc_sdk --only-recipe >> conan download abseil/20250127.0.004@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: libyaml/0.2.5.b002@openubmc/stable >> conan download libyaml/0.2.5.b002@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: opentelemetry/1.13.0.015@openubmc/stable >> conan download opentelemetry/1.13.0.015@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: abseil/20250127.0.004@openubmc/stable >> conan download abseil/20250127.0.004@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path grpc/1.33.1.005@openubmc/stable >> conan cache path protobuf/3.14.0.005@openubmc/stable >> conan download grpc/1.33.1.005@openubmc/stable -r openubmc_sdk --only-recipe >> conan download protobuf/3.14.0.005@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: opentelemetry/1.13.0.015@openubmc/stable >> conan download opentelemetry/1.13.0.015@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: libyaml/0.2.5.b002@openubmc/stable >> conan download libyaml/0.2.5.b002@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: abseil/20250127.0.004@openubmc/stable >> conan download abseil/20250127.0.004@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: grpc/1.33.1.005@openubmc/stable >> conan download grpc/1.33.1.005@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: protobuf/3.14.0.005@openubmc/stable >> conan download protobuf/3.14.0.005@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: grpc/1.33.1.005@openubmc/stable >> conan download grpc/1.33.1.005@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: protobuf/3.14.0.005@openubmc/stable >> conan download protobuf/3.14.0.005@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path re2/2022-06-01.004@openubmc/stable >> conan cache path c_ares/1.34.5.004@openubmc/stable >> conan cache path opentelemetry-proto/1.1.0.001@openubmc/stable >> conan download opentelemetry-proto/1.1.0.001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download c_ares/1.34.5.004@openubmc/stable -r openubmc_sdk --only-recipe >> conan download re2/2022-06-01.004@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path webui/1.90.58@openubmc/stable >> conan download webui/1.90.58@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path account/1.90.43@openubmc/stable Recipe not fount in openubmc_sdk: c_ares/1.34.5.004@openubmc/stable >> conan download c_ares/1.34.5.004@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: re2/2022-06-01.004@openubmc/stable Recipe not fount in openubmc_sdk: opentelemetry-proto/1.1.0.001@openubmc/stable >> conan download opentelemetry-proto/1.1.0.001@openubmc/stable -r openubmc_sdk --only-recipe >> conan download re2/2022-06-01.004@openubmc/stable -r openubmc_sdk --only-recipe >> conan download account/1.90.43@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: webui/1.90.58@openubmc/stable >> conan download webui/1.90.58@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: re2/2022-06-01.004@openubmc/stable >> conan download re2/2022-06-01.004@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: opentelemetry-proto/1.1.0.001@openubmc/stable >> conan download opentelemetry-proto/1.1.0.001@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: c_ares/1.34.5.004@openubmc/stable >> conan download c_ares/1.34.5.004@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: account/1.90.43@openubmc/stable >> conan download account/1.90.43@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: webui/1.90.58@openubmc/stable >> conan download webui/1.90.58@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: account/1.90.43@openubmc/stable >> conan download account/1.90.43@openubmc/stable -r openubmc_opensource --only-recipe >> conan cache path mctpd/1.90.6@openubmc/stable >> conan cache path profile_schema/1.70.45@openubmc/stable >> conan cache path capability_proxy/1.80.8@openubmc/stable >> conan download mctpd/1.90.6@openubmc/stable -r openubmc_sdk --only-recipe >> conan download profile_schema/1.70.45@openubmc/stable -r openubmc_sdk --only-recipe >> conan download capability_proxy/1.80.8@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path host_agent/1.60.30@openubmc/stable >> conan download host_agent/1.60.30@openubmc/stable -r openubmc_sdk --only-recipe >> conan cache path help/1.71.37@openubmc/stable Recipe not fount in openubmc_sdk: profile_schema/1.70.45@openubmc/stable >> conan download profile_schema/1.70.45@openubmc/stable -r openubmc_sdk --only-recipe >> conan download help/1.71.37@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: profile_schema/1.70.45@openubmc/stable >> conan download profile_schema/1.70.45@openubmc/stable -r openubmc_opensource --only-recipe Recipe not fount in openubmc_sdk: help/1.71.37@openubmc/stable >> conan download help/1.71.37@openubmc/stable -r openubmc_sdk --only-recipe Recipe not fount in openubmc_sdk: help/1.71.37@openubmc/stable >> conan download help/1.71.37@openubmc/stable -r openubmc_opensource --only-recipe 复制 /home/workspace/manifest/build/rootfs 到 conan 安装目录 >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/rootfs >> cp -rf /home/workspace/manifest/build/rootfs /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/rootfs >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/openubmc >> cp -rf /home/workspace/manifest/temp/board_openUBMC/rootfs /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/openubmc 不能从 yaml 文件中获取到键值 tosupporte/default/fixed_version, 没有相关配置 版本 json 配置: {'Version': '25.09.00.01', 'BuildNum': '01', 'ReleaseDate': '14:06:17 Jan 6 2026', 'BMCSDKVersion': '5.10.0.1', 'openUBMCVersion': '25.09'} WARN: 未配置 show_version 字段 >> conan lock create . -pr=profile.luajit.ini -pr:b profile.dt.ini -s:a build_type=Debug -o firmware_mgmt/*:community_enable=True -o bmc_time/*:manufacture=True -o */*:enable_luajit=True -o vpd/*:board_name=openUBMC -o fructrl/*:manufacture=True -o chassis/*:manufacture=True -o webui/*:energy_enabled=False -o help/*:board_name=openUBMC -o */*:module_symvers=1ee923e971f1cf759b9b1cf3df4fbdf4182b1eb2d5f267ef64494e6ea0bf9b86 --lockfile-out=/home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc.lock 目标 personal 正在等待任务: work.build.conan, 当前已等待 60 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 60 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 60 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 60 秒 >> conan graph info . -pr=profile.luajit.ini -pr:b profile.dt.ini -s:a build_type=Debug -o firmware_mgmt/*:community_enable=True -o bmc_time/*:manufacture=True -o */*:enable_luajit=True -o vpd/*:board_name=openUBMC -o fructrl/*:manufacture=True -o chassis/*:manufacture=True -o webui/*:energy_enabled=False -o help/*:board_name=openUBMC -o */*:module_symvers=1ee923e971f1cf759b9b1cf3df4fbdf4182b1eb2d5f267ef64494e6ea0bf9b86 -f json --lockfile=/home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc.lock --out-file=/home/workspace/manifest/temp/build_openUBMC_debug_dev/graph.info --user=openubmc --channel=stable start build dependency packages of openUBMC start build openUBMC: conan create . -pr=profile.luajit.ini -pr:b profile.dt.ini -s:a build_type=Debug -o firmware_mgmt/*:community_enable=True -o bmc_time/*:manufacture=True -o */*:enable_luajit=True -o vpd/*:board_name=openUBMC -o fructrl/*:manufacture=True -o chassis/*:manufacture=True -o webui/*:energy_enabled=False -o help/*:board_name=openUBMC -o */*:module_symvers=1ee923e971f1cf759b9b1cf3df4fbdf4182b1eb2d5f267ef64494e6ea0bf9b86 --user=openubmc --channel=stable --build=missing >> conan create . -pr=profile.luajit.ini -pr:b profile.dt.ini -s:a build_type=Debug -o firmware_mgmt/*:community_enable=True -o bmc_time/*:manufacture=True -o */*:enable_luajit=True -o vpd/*:board_name=openUBMC -o fructrl/*:manufacture=True -o chassis/*:manufacture=True -o webui/*:energy_enabled=False -o help/*:board_name=openUBMC -o */*:module_symvers=1ee923e971f1cf759b9b1cf3df4fbdf4182b1eb2d5f267ef64494e6ea0bf9b86 --user=openubmc --channel=stable --build=missing 目标 personal 正在等待任务: work.build.conan, 当前已等待 120 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 120 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 120 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 120 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 180 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 180 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 180 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 180 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 240 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 240 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 240 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 240 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 300 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 300 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 300 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 300 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 360 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 360 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 360 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 360 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 420 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 420 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 420 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 420 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 480 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 480 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 480 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 480 秒 所有组件均已在manifest中配置 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install >> cp -f /home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc.lock /home/workspace/manifest/output/packet/inner/debug/package_openUBMC.lock >> cp -f /home/workspace/manifest/temp/build_openUBMC_debug_dev/openubmc.lock /home/workspace/manifest/output/package.lock >> cp -f /home/workspace/manifest/temp/build_openUBMC_debug_dev/graph.info /home/workspace/manifest/output/graph.info >> rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/etc/package_info >> cp -f /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/package_info /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/etc/package_info 切换工作目录到: /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install >> conan cache path openubmc/25.09.00.01@openubmc/stable:ac8ff8ad9f1c469554e4383230246a1faa8a8478 >> conan cache path huawei_secure_c/1.0.2@openubmc/stable#ad5c55d13a8eb0a86cf895705d393b7f:ceb71ad4ac16d6d8df91160c239536d56385f010 >> conan cache path kmc/24.1.5.b001_004@openubmc/stable#f7f703177e1b15bb69f3ac00125c7eb0:9e672509c69024f613e13f3f2c9c8fd3d6c980bc >> conan cache path vpp/v300r025c10spc002b100_001@openubmc/stable#8904d688413ec6389a676ef359fdd3ed:85f4f3a12fe8c84381736c4225fb6fdd60dfc6fb >> conan cache path hisec_tls/25.0.1.b002@openubmc/stable#476fd0dfd107a62745b6cfd5697041e1:da39a3ee5e6b4b0d3255bfef95601890afd80709 >> conan cache path signature_verify_cbb_library/25.0.0.b002_001@openubmc/stable#f5d157cc857812a379375c8afba16cd4:a9fe77d7b2bffad1ebf1e8dab165db86b640f9bd >> conan cache path sqlite3/3.42.0-3.oe2403sp1-h2.b001@openubmc/stable#1978e7ae91c9dcd92b8a1f039e573cf7:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path openssh/9.6p1-3.oe2403sp1-h8@openubmc/stable#a5bd9c959483a6b7532e7a3ae0d7d050:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path nginx/1.27.4-htrunk7@openubmc/stable#905d3627dcc56994fd359b09897cbcbf:9d7307e7a45ae9844b9e3ce6600920b7b2bcd3db >> conan cache path json/b003_00004@openubmc/stable#d4cfc42df5879e88ef2df22b86a6d6cd:2334338fbfd9de585b1bf062fea416ce7b666d92 >> conan cache path liblogger/1.90.5@openubmc/stable#fec56e7c3e5addd9626f617649444cd6:2d68368fd8f76e6878b76a4cb9beca2c652a9992 >> conan cache path libsomp/1.90.27@openubmc/stable#ac3a1b1cb458ecdd2b6ae25493f6b2a4:4129b52ff5c2bc25f03af0aafbdd1402218ffbd8 >> conan cache path boost/1.87.0.b003@openubmc/stable#59369971980a2bd69fe38add2d9dea60:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path libmc4lua/1.90.92@openubmc/stable#10f075649600cc917ed68cd7f5dfff65:f730cf60c1419022e02484f965a8dbd07b8d642a >> conan cache path libsoc_adapter/1.90.42@openubmc/stable#d766a4be2ab5726dbec2316cd706f95e:2f11f82d29238d79b3746cc35764aa277731a98d >> conan cache path skynet/1.8.0.b001_006@openubmc/stable#9588dab601a89aba66a7ebc0894a4847:1b51f42be16a4f1228eed69ac0b8eba61e328af4 >> conan cache path luajit/2.1.0.b015@openubmc/stable#14094f7ffb0da376531db179f4487ec7:4919d6627c8f4d8b3aa180d501911582163a479e >> conan cache path libiam/1.90.16@openubmc/stable#d7cff38994a341309d76949d4b25d9f1:4a50bed0be64b2561f4a9763f017ec2aa7b60290 >> conan cache path cyrus_sasl/2.1.28-h1.computing.ibmc.r1_001@openubmc/stable#579b161b98909a5efa6eb8cdc2b302f7:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path openldap/2.6.6-htrunk1_003@openubmc/stable#4cdfc182d867a67aece610549b93c486:8c3a74faac8a6a4c149fb2ef4e7d39d7bd2b97d5 >> conan cache path certificate/1.20.24@openubmc/stable#655cc1a4cd9b43c0b2b809ca35eca168:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path key_mgmt/1.90.7@openubmc/stable#998a13e8daaf8bcc433db81773ffa0b3:bed170748e8dd736694eb8816dc2315e6e5cf672 >> conan cache path persistence/1.90.14@openubmc/stable#ba1921c8e63c6f2167dc3427c1f2d3dd:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path iam/1.0.12@openubmc/stable#30a0bef3ee527c3d7370456a9ab9cab1:e9d69b52e32d0905cb688fa3938f8f021e915e5c >> conan cache path maca/1.90.18@openubmc/stable#2a2cc91792b18f22b93f94b168091c64:bed170748e8dd736694eb8816dc2315e6e5cf672 >> conan cache path soctrl/1.90.10@openubmc/stable#288e8e381af24f1f812f3d8c08d869b8:3c8bb7a3a6ffcc5daeb5aeeb79becd14e378d7d5 >> conan cache path net-snmp/5.9.3-4.oe2403sp1-htrunk6.b004@openubmc/stable#04dde3d9ac41d95c4cc85c15aee55813:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path event/1.80.19@openubmc/stable#3c7aa4d020395f35385b5fbcc3af5697:8a9f01e2cb696293d8c85aeb3e2ac5762339db18 >> conan cache path editline_library_-_libedit/3.1-20250104-h2.5@openubmc/stable#801baa1c311f48f3247025b2fa319f44:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path event_policy/1.90.18@openubmc/stable#2e273332ed976549739c8d8c693128e0:8854cf004642efa9f3337ee353f83721c6939565 >> conan cache path lsnmp/1.30.8@openubmc/stable#31b1c0f0b108e8ecb813d8478426af7c:c0dd9743e822703105402d613575b967093e35df >> conan cache path firmware_mgmt/1.70.115@openubmc/stable#b0293022154a96ec4cb26f9c19c9cb1c:e22507415815b70454ac894fc3d5ba9cd36bc811 >> conan cache path cli/1.90.23@openubmc/stable#fa5ea6a1d0042cb3b96d93f3cf63abfc:6b61d72c9d73e265371cd7b23d129842f0bfac12 >> conan cache path libroute_mapper/1.90.12@openubmc/stable#2b5b37b74c6700919abe3026b2bb77da:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path hwdiscovery/1.90.6@openubmc/stable#6681160e9c385c6394eb2434128e31db:bed170748e8dd736694eb8816dc2315e6e5cf672 >> conan cache path bmc_network/1.80.62@openubmc/stable#398ded92473eeb9c780444a24002611b:dc433155d31cc4393c37d9db30cf28b39c6a1bf7 >> conan cache path bmc_time/1.70.61@openubmc/stable#35720b2f55b7d1cac1c6b18eaa327387:3620d18d96dec925b182731b2324b9c452187d09 >> conan cache path hwproxy/1.90.33@openubmc/stable#f868b0a8784eaac8734431ba63051063:e58b05c06eff1c99f1ecd5beb6afeeebbd2c4aac >> conan cache path runtime_accessor/1.90.40@openubmc/stable#75514bab4b6d6ff6fdcbf1e545e00a13:8a9f01e2cb696293d8c85aeb3e2ac5762339db18 >> conan cache path oms/1.90.29@openubmc/stable#af471663e143e4fdb27186f526fb7843:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path nsm/1.90.16@openubmc/stable#57ec460fd0d15eb52d1a162c0a417401:da6b3a54ab51b1890dfcccf1eb62934c3da578c2 >> conan cache path ipmi_core/1.80.41@openubmc/stable#894d7bba69c166f9d444fe4262683dff:0c4b2b559a6ed303940ba320583e90c46d1f4997 >> conan cache path rmcpd/1.90.70@openubmc/stable#5c1a758610a587363687f2a321c51caf:e9d69b52e32d0905cb688fa3938f8f021e915e5c >> conan cache path bmc_upgrade/1.70.56@openubmc/stable#b467b6ac26c8afe8357aac8a84954af7:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path compute/1.80.76@openubmc/stable#dc06e8cecc6e03cf059511e2605a5c90:315ed3827d3289241ec297427b1afde191989442 >> conan cache path libmgmt_protocol/1.80.43@openubmc/stable#417f8caa8bad0f551f60a0a56784efdd:922db4f06aed12da4218138b3dedea443a726584 >> conan cache path computing_component_raid/v100r001c00spc512b020_4@openubmc/stable#6f70443f7919ee45d594fc42ef9e1d22:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path bmc_soc/1.80.25@openubmc/stable#9b243ac2959864c9de58707189014d6a:8a9f01e2cb696293d8c85aeb3e2ac5762339db18 >> conan cache path redfish/1.90.25@openubmc/stable#c8eea5a5dfb5fcc38cd0ef6ed72a1fcd:d0e739b4d4e0bffabfe5cfc0afc492ca8ddfa1cb >> conan cache path lcurl/1.20.13@openubmc/stable#c4abf34e1d7cf8c2c474f7294012af56:3ca6bca34ef8cd3c6aec032df76ea8e883ca74b5 >> conan cache path curl/8.4.0-14.oe2403sp1-htrunk5@openubmc/stable#bdbb103b31420ac82be91de5f8dc424a:44f1999a250b57b79a6a8b7270e2e7762a303af3 >> conan cache path libssh2/1.11.0-4.oe2403sp1@openubmc/stable#8f0c9b01503f314cdaa8872c82d595c0:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path web_backend/1.90.15@openubmc/stable#1b2fcff1bb2cf8786f15804b0ea90d9d:fc9c198a10285d2062c81867c4ea6533e941d89e >> conan cache path ddns/1.90.5@openubmc/stable#bc80230c91aafe0e04d151ed41745d2f:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path ntp/4.2.8p17-3.oe2403sp1-htrunk3-1@openubmc/stable#c0f30d1f1ce9b6f70a324255b21ec9ea:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path product_mgmt/1.90.11@openubmc/stable#1822b1587bb5c73d9b140d28371c795f:bed170748e8dd736694eb8816dc2315e6e5cf672 >> conan cache path usb_entry/1.90.9@openubmc/stable#be75efe9d457586b053d05f9a8e6df47:3c8bb7a3a6ffcc5daeb5aeeb79becd14e378d7d5 >> conan cache path lldpd/1.0.19-h1@openubmc/stable#d86a67971fb57e6ed7261250ce98a358:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path file_transfer/1.70.20@openubmc/stable#fda3a8a4e28dda59d3da3e7b96475059:6ed141775e3cc13c074db41a3d97962521f2dcb7 >> conan cache path libproto-mc4c/1.90.4@openubmc/stable#9047e7ac6e9d1210cc8af65f5ed1d35a:1682bddab3841b6c1cc85a9e36c2ebd987c5b50b >> conan cache path muparser/2.3.5@openubmc/stable#84e2234079c3369253067443ccc83ac0:dcaa73e7edb0f776c9f65f0af878268cd3afb7a6 >> conan cache path libmdbc/1.80.2@openubmc/stable#410b8efde1f3128399334f481193d39b:8fc1b05d3332b1d5049d4bdf67a8715f4236fc8e >> conan cache path libmcc/1.90.7@openubmc/stable#c883df43125ec4e30c49f195479c13b0:2208ad8369389e5a1206dbf21c45fcd37365c276 >> conan cache path ssdp/1.80.5@openubmc/stable#75c76600e23116ce59d101666d72b630:ba10b0b5d38de7d7fd5d153729bc31542a00fd58 >> conan cache path mdbctl/1.90.4@openubmc/stable#0db0b7905b1216a0ae5006855073853f:88719bb99f9d653a79a8d57816c0ae595ff6b1a3 >> conan cache path bmc_health/1.70.10@openubmc/stable#791258d98afcc1418d875c6e0fc2d6e0:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path secbox/24.1.8.b010_00004.b001@openubmc/stable#74afc621f5d179dfbcf3d94aeb6e768f:a9fe77d7b2bffad1ebf1e8dab165db86b640f9bd >> conan cache path remote_console/1.90.18@openubmc/stable#5ee64fbd711e9086cc588fb2831a309d:30290acace8ef97bf3bb424b8167f72033b52a51 >> conan cache path libjpeg/9f.b001@openubmc/stable#8e9387f2fd48955f4a6e723e93781ae4:ceb71ad4ac16d6d8df91160c239536d56385f010 >> conan cache path ums/1.80.17@openubmc/stable#d7858ee8eac9e4cb84b6e9e407c56462:c68134dd25bbb0574b9025b49622c7d3a6b51a5a >> conan cache path snmp/1.90.8@openubmc/stable#5ce3d589be977c49cd3ee1945245e35d:0cd1575986dbab2f9d1b2ce60cb389f08b751797 >> conan cache path vpd/1.80.26@openubmc/stable#d4cf5184400e49ed67939436b2c77347:582e093ee6c9a154a84fdfd89574d24b71441f47 >> conan cache path mdb_interface/1.90.118@openubmc/stable#59033e957cbdedc13b698e15465122b2:104030ddc23082808bb5fb61061fa38d7441c278 >> conan cache path fructrl/1.70.60@openubmc/stable#1162ad9de780a08ba46a98c63695ce58:07dc2834347d9776256cc0c3de645d960a0d62f1 >> conan cache path sensor/1.70.79@openubmc/stable#3f51fbfb60fd198449734a1b9af5eb8a:8a9f01e2cb696293d8c85aeb3e2ac5762339db18 >> conan cache path frudata/1.70.38@openubmc/stable#9e5ff25a2b25a79fddea111e5054fdf5:2893c9722b443329e2f9ba43df8b09470afe876b >> conan cache path rackmount/1.90.215@openubmc/stable#05468f84cd7fab87be8d88fe17306810:72a7e73a31f5caff5b9c1fe1f37873adecbb59c3 >> conan cache path hica/1.70.14@openubmc/stable#2895a8f32706a7011a0d5b4081737338:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path rootfs_user/1.80.06@openubmc/stable#ffeea2ab54be59134e325ede56e590e0:3c8bb7a3a6ffcc5daeb5aeeb79becd14e378d7d5 >> conan cache path lsw/1.70.10@openubmc/stable#09d3e4132c013934e443b4d178d3202d:2893c9722b443329e2f9ba43df8b09470afe876b >> conan cache path network_adapter/1.80.8@openubmc/stable#5fe7aa12ec0d5b5e74418cca0ab25be9:37b41c20fa849350ad506f9a07f22f70f0714b3f >> conan cache path mctpd/1.90.6@openubmc/stable#154a504c279af0649449bc1b735830b0:d78e915ae1d0c10d5d19bdca88dca75173a30e1e >> conan cache path chassis/1.80.14@openubmc/stable#2ed183b3041091fe473c3f34eaa22826:31cb880fb7cfd322b02d3b6e755747f6f61e419c >> conan cache path power_mgmt/1.70.117@openubmc/stable#a91211cd26dbe26d4f5908295d855531:3c8bb7a3a6ffcc5daeb5aeeb79becd14e378d7d5 >> conan cache path storage/1.80.117@openubmc/stable#fb6e8528f4a334aaee1b515cb09e9c3c:37b41c20fa849350ad506f9a07f22f70f0714b3f >> conan cache path pcie_device/1.70.76@openubmc/stable#16743e16bd1e1f4f0a021060246bd0e4:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path thermal_mgmt/1.70.107@openubmc/stable#527b703f2072fdead86ce556b9bc4fd1:6c2cace65ac6021335cf5c6e2ed628fc07f332b6 >> conan cache path libenergy/1.0.17@openubmc/stable#4f0c9512f83208a3be62af9f8896ece0:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path manufacture/1.70.12@openubmc/stable#616cdbc16ca47108b88a60c339b52f2e:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path bios/1.80.55@openubmc/stable#601907949c343041edb23482501e1523:315ed3827d3289241ec297427b1afde191989442 >> conan cache path general_hardware/1.80.55@openubmc/stable#8376bf46cb12faaf6bb91106cc5eaa1a:0ba1c3e49ab39e662ebc7eea4dc74157061a1546 >> conan cache path observability/1.90.24@openubmc/stable#198b372fb1646acc88a848dd4f31254b:4487370dde48e1fe7208632c4e00158192072309 >> conan cache path opentelemetry/1.13.0.015@openubmc/stable#18b165c5f534ca3d038f85dd9a2f0f55:d0dccd21990002490326b8e0db837b346fa6bef7 >> conan cache path abseil/20250127.0.004@openubmc/stable#18da5a1817aa8a1cf615b6c92e923b88:76ffbdcb55e1c5b66da4126ff9beb9e795523747 >> conan cache path grpc/1.33.1.005@openubmc/stable#9c33158debce3b3fc435197eab17aed9:89ca2c58b789276db3d63b3bafcd49366e3e529b >> conan cache path protobuf/3.14.0.005@openubmc/stable#52ac4d733afdd178c42c31e5d04f27a8:667b0c7e3c0835c73ded5972bf7e0280155291f5 >> conan cache path re2/2022-06-01.004@openubmc/stable#b33603719fe54f64e74d1b193857bd3f:1955159861d288f999f48a3e7ca7a8278bf23ac2 >> conan cache path c_ares/1.34.5.004@openubmc/stable#e4e5f4ce3fbef7b255fd8b377206985f:1d74f81518c6a19d1138310a243c92ea8b1338f9 >> conan cache path opentelemetry-proto/1.1.0.001@openubmc/stable#409d7a08c0d959225713ccde19aee334:da1005d162cb06138700372b25dc9fabf1528f5f >> conan cache path fluent-bit/3.2.0.b004@openubmc/stable#85d774dff658ba23ca5b1668b2d8bb37:a106ad2c7e4ab649e42861c355d2423c196782b8 >> conan cache path libyaml/0.2.5.b002@openubmc/stable#05c0a401a0d7fa230b834d5ce3ea7f80:ceb71ad4ac16d6d8df91160c239536d56385f010 >> conan cache path webui/1.90.58@openubmc/stable#26e988c4f5d15f6134cff949c1d9ae7b:a76a03c58b8d6bc20c40ed41d80e458b72c11382 >> conan cache path account/1.90.43@openubmc/stable#1bdd4947682a496516271645c0c70c28:a4d72b33b9c85e5de42d61ca44014340dd54f68a >> conan cache path profile_schema/1.70.45@openubmc/stable#a75dd56654a99becd2f0823dcbc08cdb:8a9f01e2cb696293d8c85aeb3e2ac5762339db18 >> conan cache path capability_proxy/1.80.8@openubmc/stable#112c93bc3a6736339e4bd136bc4a14b4:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path host_agent/1.60.30@openubmc/stable#0a9aa88e017f5255730a825ea8e1dc1d:1a485efc83ccb32ab41d82aac09c51a8cfd152f5 >> conan cache path help/1.71.37@openubmc/stable#cf43738c83c81562f9cec359b554ab7d:582e093ee6c9a154a84fdfd89574d24b71441f47 目标 personal 正在等待任务: work.build.conan, 当前已等待 540 秒 目标 personal 正在等待任务: work.task_build_rootfs_img, 当前已等待 540 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 540 秒 目标 personal 正在等待任务: work.build.conan, 当前已等待 540 秒 >> sudo rm -rf /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/rootfs/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /home/workspace/manifest/temp/build_openUBMC_debug_dev/conan_install/rootfs/permissions.ini, 修改权限 组件列表: dict_keys(['rootfs', 'openubmc', 'huawei_secure_c', 'kmc', 'vpp', 'hisec_tls', 'signature_verify_cbb_library', 'sqlite3', 'openssh', 'nginx', 'json', 'liblogger', 'libsomp', 'boost', 'libmc4lua', 'libsoc_adapter', 'skynet', 'luajit', 'libiam', 'cyrus_sasl', 'openldap', 'certificate', 'key_mgmt', 'persistence', 'iam', 'maca', 'soctrl', 'net-snmp', 'event', 'editline_library_-_libedit', 'event_policy', 'lsnmp', 'firmware_mgmt', 'cli', 'libroute_mapper', 'hwdiscovery', 'bmc_network', 'bmc_time', 'hwproxy', 'runtime_accessor', 'oms', 'nsm', 'ipmi_core', 'rmcpd', 'bmc_upgrade', 'compute', 'libmgmt_protocol', 'computing_component_raid', 'bmc_soc', 'redfish', 'lcurl', 'curl', 'libssh2', 'web_backend', 'ddns', 'ntp', 'product_mgmt', 'usb_entry', 'lldpd', 'file_transfer', 'libproto-mc4c', 'muparser', 'libmdbc', 'libmcc', 'ssdp', 'mdbctl', 'bmc_health', 'secbox', 'remote_console', 'libjpeg', 'ums', 'snmp', 'vpd', 'mdb_interface', 'fructrl', 'sensor', 'frudata', 'rackmount', 'hica', 'rootfs_user', 'lsw', 'network_adapter', 'mctpd', 'chassis', 'power_mgmt', 'storage', 'pcie_device', 'thermal_mgmt', 'libenergy', 'manufacture', 'bios', 'general_hardware', 'observability', 'opentelemetry', 'abseil', 'grpc', 'protobuf', 're2', 'c_ares', 'opentelemetry-proto', 'fluent-bit', 'libyaml', 'webui', 'account', 'profile_schema', 'capability_proxy', 'host_agent', 'help']) >> sudo cp -dfr /root/.conan2/p/signa0547a8a25dc53/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/json030a4bf3df0f4/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libso31bf9bdd0fb11/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/liblo88a7f25c412e1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/sqlitd764e6f3d5ac5/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/hisec423c2e1fa3c02/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/kmc548835f6e3df2/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/huawe5a00056f97643/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/opens5c0814d563b17/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/nginx73a0edd8bfcc1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/vppbfde2ab3bfa66/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root WARN: 权限文件 /root/.conan2/p/hisec423c2e1fa3c02/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/hisec423c2e1fa3c02/p 的权限 依据配置文件: /root/.conan2/p/huawe5a00056f97643/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/boost0c1652c117f36/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/opens5c0814d563b17/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/libsode5475608cd8a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/liblo88a7f25c412e1/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/luajif3ccea1c571f9/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/skyne347733e95f760/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/openlc3105816d216a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libia96615208ca0f6/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/certi3bb80e5a7eeaf/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/persief84506e79bc1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/sqlitd764e6f3d5ac5/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/json030a4bf3df0f4/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/key_m87554137d0528/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/iam095946e283275/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/signa0547a8a25dc53/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/eventc64cda5c2dfd1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/net-seabf91706fd2c/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/maca9c7e4a68868fe/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/soctra981e94e7172a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/editlcac533f1eabc4/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/cyrus130432cf3a1ee/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/lsnmp55cd4ef57bdd4/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/firmw4909c811e7392/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/clie61ba1cffcc8b/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libroe99cfc0ac29d1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/hwdis1d5bb625de33f/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/bmc_n5cf2064883543/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/evente1d37c85f1762/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/bmc_t06cea5171c5b6/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/hwprof360b3c6a48fc/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libmc5e34bb404fc58/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/runti7f0c5b946b090/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/oms3fb53fbd95249/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/nsmf4576d113647c/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/ipmi_2bd067e12bfea/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/rmcpd5b16c95ee43f5/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/bmc_ub893f7a105953/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libmg05004d1bd36b5/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/compue7bb794ef45b4/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/compu61c683dcdb5dd/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/bmc_s1ab32da824aae/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/lcurl057f50d2b929e/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/redfi5f87f07ecfdd9/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/curl4ea3f3c1e6692/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libss70c96ad6af2e9/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/web_b3291f4c8aecb6/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/ddnsd802c69e06f40/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/usb_e45977de9b59c6/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/produ29f363fef53f6/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/ntp9cf9b0b8a2088/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/lldpd273f4fa2f9c91/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/file_162d850333663/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/mupara14104870df0c/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libpr5ce1ebb645cc3/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libmd90ad3a1142ff1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libmc736622ee6acdc/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/mdbctd33cb49193f3a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/ssdp58bf7aa7511db/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/editlcac533f1eabc4/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/bmc_hae077d499b07e/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/secbo8e17676ab7b52/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/remot7e71f27fa3cb5/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libjp92a1e93b26738/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/ums75012b6ea4a11/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/snmp24b04085209a1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/vpda686a2a1a2d2f/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/lsnmp55cd4ef57bdd4/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/mdb_i1122db1fd418f/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/fruct516b3105d775c/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/senso2723f09696543/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/frudad168c96edd068/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/rackm84c5ffa6e2dac/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/hicaf405714ce0f5a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/rootf1c0345cf08c71/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/mctpd7e63d491e15ed/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/lsw971b428196b61/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/netwo30d1684b51be1/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/chass25e44ee39e243/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/power201d9848bfcae/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/storaf34511c61dfc9/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/thermea91eed4607f7/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/secbo8e17676ab7b52/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/pcie_917408609acd4/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/obser11a52f0ebfcbb/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/cyrus130432cf3a1ee/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/liben40c8bb6993450/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/manufc5216197807d2/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/lcurl057f50d2b929e/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/biosbb8af34c270f9/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/gener68149d3b50721/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/opent8150d16c02b1e/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libedit.so >> sudo cp -dfr /root/.conan2/p/abseief8e89c61da2c/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/grpcf7a4f2862c4fa/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/protoc9279a260eaad/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/re223d11d1fe929a/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/c_are5b85eeea8d2d0/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/opent9eb3ceac7a2a7/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/lldpd273f4fa2f9c91/p/permissions.ini, 修改权限 >> sudo cp -dfr /root/.conan2/p/fluen6571554007c87/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/accou6b839b5550a38/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/libyae046ce6f4ecef/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/b/webui7ff396b4f2c88/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/profiae86790ec8ea8/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/host_5b4ca53e6d2ef/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/capab8058b4496f962/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root >> sudo cp -dfr /root/.conan2/p/help8797e664d638d/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root 依据配置文件: /root/.conan2/p/sqlitd764e6f3d5ac5/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libedit.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:136: WARN: 权限文件 /root/.conan2/p/luajif3ccea1c571f9/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/luajif3ccea1c571f9/p 的权限 Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libedit.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/ntp9cf9b0b8a2088/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libjp92a1e93b26738/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/snmp24b04085209a1/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/clie61ba1cffcc8b/p/permissions.ini, 修改权限 WARN: 权限文件 /root/.conan2/p/liben40c8bb6993450/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/liben40c8bb6993450/p 的权限 依据配置文件: /root/.conan2/p/persief84506e79bc1/p/permissions.ini, 修改权限 ERROR: 任务 work.build.conan 执行失败, 复制组件 (CopyComponent-5:136) 失败, 退出码: 1 ERROR: 任务 work.build.conan 执行失败 依据配置文件: /root/.conan2/p/file_162d850333663/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/key_m87554137d0528/p/permissions.ini, 修改权限 >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libntlm.so >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblldpctl.so WARN: 权限文件 /root/.conan2/p/opent9eb3ceac7a2a7/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/opent9eb3ceac7a2a7/p 的权限 依据配置文件: /root/.conan2/p/curl4ea3f3c1e6692/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/openlc3105816d216a/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/hicaf405714ce0f5a/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblldpctl.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:165: 依据配置文件: /root/.conan2/p/mdbctd33cb49193f3a/p/permissions.ini, 修改权限 Traceback (most recent call last): 依据配置文件: /root/.conan2/p/libyae046ce6f4ecef/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libss70c96ad6af2e9/p/permissions.ini, 修改权限 File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblldpctl.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/compue7bb794ef45b4/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/runti7f0c5b946b090/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/fluen6571554007c87/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libpr5ce1ebb645cc3/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libso31bf9bdd0fb11/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libroe99cfc0ac29d1/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libmd90ad3a1142ff1/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libntlm.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:126: 依据配置文件: /root/.conan2/p/profiae86790ec8ea8/p/permissions.ini, 修改权限 Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() 依据配置文件: /root/.conan2/p/maca9c7e4a68868fe/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/ddnsd802c69e06f40/p/permissions.ini, 修改权限 File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libntlm.so']' returned non-zero exit status 1. >> sudo cp -dfr /root/.conan2/p/ssdp58bf7aa7511db/p/. /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root WARN: 权限文件 /root/.conan2/p/re223d11d1fe929a/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/re223d11d1fe929a/p 的权限 >> chown -h 101:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libssh2.so 依据配置文件: /root/.conan2/p/bmc_hae077d499b07e/p/permissions.ini, 修改权限 >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblber.so >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libyaml.so WARN: 权限文件 /root/.conan2/p/c_are5b85eeea8d2d0/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/c_are5b85eeea8d2d0/p 的权限 依据配置文件: /root/.conan2/p/hwdis1d5bb625de33f/p/permissions.ini, 修改权限 >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libjpeg.so >> chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libproto-mc4c.so 依据配置文件: /root/.conan2/p/bmc_ub893f7a105953/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 101:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libssh2.so 错误, 日志: /home/workspace/manifest/temp/log/task.log >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libminiz.so.3 Process CopyComponent-5:159: >> chown -h 101:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcurl.so 依据配置文件: /root/.conan2/p/rootf1c0345cf08c71/p/permissions.ini, 修改权限 Traceback (most recent call last): 依据配置文件: /root/.conan2/p/bmc_t06cea5171c5b6/p/permissions.ini, 修改权限 File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '101:103', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libssh2.so']' returned non-zero exit status 1. ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libyaml.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:208: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libyaml.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/usb_e45977de9b59c6/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libproto-mc4c.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:167: 依据配置文件: /root/.conan2/p/capab8058b4496f962/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libjpeg.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:176: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:103', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libproto-mc4c.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/iam095946e283275/p/permissions.ini, 修改权限 Traceback (most recent call last): 依据配置文件: /root/.conan2/p/eventc64cda5c2dfd1/p/permissions.ini, 修改权限 File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ERROR: 执行命令 chown -h 101:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcurl.so 错误, 日志: /home/workspace/manifest/temp/log/task.log File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libjpeg.so']' returned non-zero exit status 1. Process CopyComponent-5:158: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '101:103', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcurl.so']' returned non-zero exit status 1. ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblber.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:127: Traceback (most recent call last): ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libminiz.so.3 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:207: File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/liblber.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/b/lsw971b428196b61/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/mupara14104870df0c/p/permissions.ini, 修改权限 Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libminiz.so.3']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/obser11a52f0ebfcbb/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libia96615208ca0f6/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/mctpd7e63d491e15ed/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libsode5475608cd8a/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/manufc5216197807d2/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/host_5b4ca53e6d2ef/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/soctra981e94e7172a/p/permissions.ini, 修改权限 >> chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmuparser.so ERROR: 执行命令 chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmuparser.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:168: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:103', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmuparser.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/b/fruct516b3105d775c/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/b/frudad168c96edd068/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libmc736622ee6acdc/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/bmc_s1ab32da824aae/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/ums75012b6ea4a11/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/kmc548835f6e3df2/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/ssdp58bf7aa7511db/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/certi3bb80e5a7eeaf/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/firmw4909c811e7392/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/pcie_917408609acd4/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/b/chass25e44ee39e243/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/rmcpd5b16c95ee43f5/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/senso2723f09696543/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/evente1d37c85f1762/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/hwprof360b3c6a48fc/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/web_b3291f4c8aecb6/p/permissions.ini, 修改权限 >> chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmcc.so 依据配置文件: /root/.conan2/p/remot7e71f27fa3cb5/p/permissions.ini, 修改权限 ERROR: 执行命令 chown -h 0:103 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmcc.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:170: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:103', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libmcc.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/nsmf4576d113647c/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/skyne347733e95f760/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/redfi5f87f07ecfdd9/p/permissions.ini, 修改权限 WARN: 权限文件 /root/.conan2/p/nginx73a0edd8bfcc1/p/permissions.ini 不存在, 所以无法设置组件 /root/.conan2/p/nginx73a0edd8bfcc1/p 的权限 依据配置文件: /root/.conan2/p/oms3fb53fbd95249/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/ipmi_2bd067e12bfea/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/compu61c683dcdb5dd/p/permissions.ini, 修改权限 ERROR: 任务 personal 执行失败 ERROR: 请查看日志信息 依据配置文件: /root/.conan2/p/libmg05004d1bd36b5/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/produ29f363fef53f6/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/protoc9279a260eaad/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/accou6b839b5550a38/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/power201d9848bfcae/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/thermea91eed4607f7/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/netwo30d1684b51be1/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/net-seabf91706fd2c/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/bmc_n5cf2064883543/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/storaf34511c61dfc9/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/b/vpda686a2a1a2d2f/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/biosbb8af34c270f9/p/permissions.ini, 修改权限 >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libnetsnmp.so ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libnetsnmp.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:134: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libnetsnmp.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/b/webui7ff396b4f2c88/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/gener68149d3b50721/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/help8797e664d638d/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/libmc5e34bb404fc58/p/permissions.ini, 修改权限 find: ‘/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/opt/bmc/soc/kvm’: Permission denied Process CopyComponent-5:179: 依据配置文件: /root/.conan2/p/b/opent8150d16c02b1e/p/permissions.ini, 修改权限 Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 144, in proc_permissions_line self.work.pipe_command(["sudo find {} -type d ".format(file), " sudo xargs -P 0 -i. chown {}:{} ." File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 270, in pipe_command return self.tools.pipe_command(commands, out_file, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 726, in pipe_command raise BmcGoException(f"运行命令 {command} 失败, 请分析执行的命令返回日志") bmcgo.errors.BmcGoException: 运行命令 sudo find /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/opt/bmc/soc -type d 失败, 请分析执行的命令返回日志 依据配置文件: /root/.conan2/p/vppbfde2ab3bfa66/p/permissions.ini, 修改权限 >> chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcrypto.so ERROR: 执行命令 chown -h 0:0 /home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcrypto.so 错误, 日志: /home/workspace/manifest/temp/log/task.log Process CopyComponent-5:111: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 116, in run self.proc_permissions_line(line) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 135, in proc_permissions_line self.link_recursive_deal(file, f"{chk[3]}:{chk[4]}") File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task_build_conan.py", line 88, in link_recursive_deal self.work.run_command(f"chown -h {ownership} {file_name}", sudo=True) File "/usr/local/lib/python3.12/dist-packages/bmcgo/tasks/task.py", line 267, in run_command return self.tools.run_command(command, ignore_error, sudo, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 697, in run_command raise e File "/usr/local/lib/python3.12/dist-packages/bmcgo/utils/tools.py", line 687, in run_command ret = subprocess.run(command, stdout=log_fd, stderr=log_fd, check=check, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['/usr/bin/sudo', '/usr/bin/chown', '-h', '0:0', '/home/workspace/manifest/temp/build_openUBMC_debug_dev/tmp_root/usr/lib64/libcrypto.so']' returned non-zero exit status 1. 依据配置文件: /root/.conan2/p/grpcf7a4f2862c4fa/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/abseief8e89c61da2c/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/mdb_i1122db1fd418f/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/rackm84c5ffa6e2dac/p/permissions.ini, 修改权限 依据配置文件: /root/.conan2/p/boost0c1652c117f36/p/permissions.ini, 修改权限 root@docker-desktop:/home/workspace/manifest#