openubmc-bingo 0.5.240__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openubmc-bingo might be problematic. Click here for more details.
- bmcgo/__init__.py +12 -0
- bmcgo/bmcgo.py +22 -0
- bmcgo/bmcgo_config.py +176 -0
- bmcgo/cli/__init__.py +10 -0
- bmcgo/cli/cli.py +584 -0
- bmcgo/codegen/__init__.py +14 -0
- bmcgo/codegen/c/__init__.py +9 -0
- bmcgo/codegen/c/annotation.py +52 -0
- bmcgo/codegen/c/argument.py +42 -0
- bmcgo/codegen/c/codegen.py +153 -0
- bmcgo/codegen/c/comment.py +22 -0
- bmcgo/codegen/c/ctype_defination.py +353 -0
- bmcgo/codegen/c/helper.py +87 -0
- bmcgo/codegen/c/interface.py +63 -0
- bmcgo/codegen/c/method.py +82 -0
- bmcgo/codegen/c/property.py +180 -0
- bmcgo/codegen/c/renderer.py +21 -0
- bmcgo/codegen/c/signal.py +64 -0
- bmcgo/codegen/c/template/client.c.mako +145 -0
- bmcgo/codegen/c/template/client.h.mako +36 -0
- bmcgo/codegen/c/template/interface.c.mako +0 -0
- bmcgo/codegen/c/template/interface.introspect.xml.mako +99 -0
- bmcgo/codegen/c/template/micro_component.c.mako +32 -0
- bmcgo/codegen/c/template/public.c.mako +228 -0
- bmcgo/codegen/c/template/public.h.mako +128 -0
- bmcgo/codegen/c/template/server.c.mako +104 -0
- bmcgo/codegen/c/template/server.h.mako +36 -0
- bmcgo/codegen/lua/.lua-format +7 -0
- bmcgo/codegen/lua/Makefile +101 -0
- bmcgo/codegen/lua/__init__.py +9 -0
- bmcgo/codegen/lua/codegen.py +171 -0
- bmcgo/codegen/lua/proto/Makefile +87 -0
- bmcgo/codegen/lua/proto/ipmi_types.proto +17 -0
- bmcgo/codegen/lua/proto/types.proto +52 -0
- bmcgo/codegen/lua/script/check_intfs.py +161 -0
- bmcgo/codegen/lua/script/dto/__init__.py +11 -0
- bmcgo/codegen/lua/script/dto/exception.py +53 -0
- bmcgo/codegen/lua/script/dto/kepler_abstract.py +47 -0
- bmcgo/codegen/lua/script/dto/options.py +33 -0
- bmcgo/codegen/lua/script/dto/print_simple.py +19 -0
- bmcgo/codegen/lua/script/dto/redfish_api.py +241 -0
- bmcgo/codegen/lua/script/dto/url_route.py +195 -0
- bmcgo/codegen/lua/script/gen_db_json.py +444 -0
- bmcgo/codegen/lua/script/gen_depends.py +89 -0
- bmcgo/codegen/lua/script/gen_entry.py +263 -0
- bmcgo/codegen/lua/script/gen_feature_json.py +156 -0
- bmcgo/codegen/lua/script/gen_historical_local_db_json.py +88 -0
- bmcgo/codegen/lua/script/gen_intf_json.py +261 -0
- bmcgo/codegen/lua/script/gen_intf_rpc_json.py +575 -0
- bmcgo/codegen/lua/script/gen_ipmi_json.py +485 -0
- bmcgo/codegen/lua/script/gen_mdb_json.py +117 -0
- bmcgo/codegen/lua/script/gen_rpc_msg_json.py +487 -0
- bmcgo/codegen/lua/script/gen_schema.py +302 -0
- bmcgo/codegen/lua/script/ipmi_types_pb2.py +135 -0
- bmcgo/codegen/lua/script/loader/__init__.py +11 -0
- bmcgo/codegen/lua/script/loader/file_utils.py +33 -0
- bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py +79 -0
- bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py +47 -0
- bmcgo/codegen/lua/script/loader/redfish_loader.py +127 -0
- bmcgo/codegen/lua/script/lua_format.py +62 -0
- bmcgo/codegen/lua/script/mds_util.py +385 -0
- bmcgo/codegen/lua/script/merge_model.py +330 -0
- bmcgo/codegen/lua/script/merge_proto_algo.py +85 -0
- bmcgo/codegen/lua/script/proto_loader.py +47 -0
- bmcgo/codegen/lua/script/proto_plugin.py +140 -0
- bmcgo/codegen/lua/script/redfish_source_tree.py +118 -0
- bmcgo/codegen/lua/script/render_utils/__init__.py +38 -0
- bmcgo/codegen/lua/script/render_utils/base.py +25 -0
- bmcgo/codegen/lua/script/render_utils/client_lua.py +98 -0
- bmcgo/codegen/lua/script/render_utils/controller_lua.py +71 -0
- bmcgo/codegen/lua/script/render_utils/db_lua.py +224 -0
- bmcgo/codegen/lua/script/render_utils/error_lua.py +185 -0
- bmcgo/codegen/lua/script/render_utils/factory.py +52 -0
- bmcgo/codegen/lua/script/render_utils/ipmi_lua.py +159 -0
- bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py +24 -0
- bmcgo/codegen/lua/script/render_utils/mdb_lua.py +177 -0
- bmcgo/codegen/lua/script/render_utils/mdb_register.py +215 -0
- bmcgo/codegen/lua/script/render_utils/message_lua.py +26 -0
- bmcgo/codegen/lua/script/render_utils/messages_lua.py +156 -0
- bmcgo/codegen/lua/script/render_utils/model_lua.py +485 -0
- bmcgo/codegen/lua/script/render_utils/old_model_lua.py +429 -0
- bmcgo/codegen/lua/script/render_utils/plugin_lua.py +38 -0
- bmcgo/codegen/lua/script/render_utils/redfish_proto.py +86 -0
- bmcgo/codegen/lua/script/render_utils/request_lua.py +76 -0
- bmcgo/codegen/lua/script/render_utils/service_lua.py +130 -0
- bmcgo/codegen/lua/script/render_utils/utils_message_lua.py +125 -0
- bmcgo/codegen/lua/script/render_utils/validate_lua.py +221 -0
- bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py +217 -0
- bmcgo/codegen/lua/script/template.py +166 -0
- bmcgo/codegen/lua/script/types_pb2.py +516 -0
- bmcgo/codegen/lua/script/utils.py +663 -0
- bmcgo/codegen/lua/script/validate.py +80 -0
- bmcgo/codegen/lua/script/yaml_to_json.py +73 -0
- bmcgo/codegen/lua/templates/Makefile +114 -0
- bmcgo/codegen/lua/templates/apps/Makefile +261 -0
- bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk +64 -0
- bmcgo/codegen/lua/templates/apps/app.lua.mako +19 -0
- bmcgo/codegen/lua/templates/apps/class.lua.mako +35 -0
- bmcgo/codegen/lua/templates/apps/client.lua.mako +429 -0
- bmcgo/codegen/lua/templates/apps/controller.lua.mako +276 -0
- bmcgo/codegen/lua/templates/apps/datas.lua.mako +8 -0
- bmcgo/codegen/lua/templates/apps/db.lua.mako +89 -0
- bmcgo/codegen/lua/templates/apps/entry.lua.mako +128 -0
- bmcgo/codegen/lua/templates/apps/feature.lua.mako +37 -0
- bmcgo/codegen/lua/templates/apps/generate_route.mako +25 -0
- bmcgo/codegen/lua/templates/apps/impl_feature.lua.mako +72 -0
- bmcgo/codegen/lua/templates/apps/ipmi.lua.mako +97 -0
- bmcgo/codegen/lua/templates/apps/ipmi_cmd.lua.mako +18 -0
- bmcgo/codegen/lua/templates/apps/ipmi_message.lua.mako +36 -0
- bmcgo/codegen/lua/templates/apps/local_db.lua.mako +263 -0
- bmcgo/codegen/lua/templates/apps/main.lua.mako +25 -0
- bmcgo/codegen/lua/templates/apps/mc.lua.mako +77 -0
- bmcgo/codegen/lua/templates/apps/mdb.lua.mako +45 -0
- bmcgo/codegen/lua/templates/apps/mdb_interface.lua.mako +73 -0
- bmcgo/codegen/lua/templates/apps/message.lua.mako +38 -0
- bmcgo/codegen/lua/templates/apps/model.lua.mako +239 -0
- bmcgo/codegen/lua/templates/apps/orm_classes.lua.mako +16 -0
- bmcgo/codegen/lua/templates/apps/plugin.lua.mako +8 -0
- bmcgo/codegen/lua/templates/apps/redfish.proto.mako +47 -0
- bmcgo/codegen/lua/templates/apps/service.lua.mako +440 -0
- bmcgo/codegen/lua/templates/apps/signal_listen.lua.mako +19 -0
- bmcgo/codegen/lua/templates/apps/utils/default_intf.lua.mako +41 -0
- bmcgo/codegen/lua/templates/apps/utils/enum.mako +10 -0
- bmcgo/codegen/lua/templates/apps/utils/imports.mako +13 -0
- bmcgo/codegen/lua/templates/apps/utils/mdb_intf.lua.mako +25 -0
- bmcgo/codegen/lua/templates/apps/utils/mdb_obj.lua.mako +23 -0
- bmcgo/codegen/lua/templates/apps/utils/message.mako +160 -0
- bmcgo/codegen/lua/templates/apps/utils/request.lua.mako +59 -0
- bmcgo/codegen/lua/templates/apps/utils/validate.mako +83 -0
- bmcgo/codegen/lua/templates/errors.lua.mako +36 -0
- bmcgo/codegen/lua/templates/messages.lua.mako +32 -0
- bmcgo/codegen/lua/templates/new_app/.clang-format.mako +170 -0
- bmcgo/codegen/lua/templates/new_app/.gitignore.mako +26 -0
- bmcgo/codegen/lua/templates/new_app/CHANGELOG.md.mako +0 -0
- bmcgo/codegen/lua/templates/new_app/CMakeLists.txt.mako +29 -0
- bmcgo/codegen/lua/templates/new_app/Makefile.mako +25 -0
- bmcgo/codegen/lua/templates/new_app/README.md.mako +0 -0
- bmcgo/codegen/lua/templates/new_app/conanfile.py.mako +7 -0
- bmcgo/codegen/lua/templates/new_app/config.cfg.mako +6 -0
- bmcgo/codegen/lua/templates/new_app/mds/model.json.mako +3 -0
- bmcgo/codegen/lua/templates/new_app/mds/service.json.mako +21 -0
- bmcgo/codegen/lua/templates/new_app/permissions.ini.mako +16 -0
- bmcgo/codegen/lua/templates/new_app/src/lualib/${project_name}_app.lua.mako +16 -0
- bmcgo/codegen/lua/templates/new_app/src/service/main.lua.mako +25 -0
- bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.conf.mako +9 -0
- bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.mako +47 -0
- bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako +23 -0
- bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako +18 -0
- bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link +1 -0
- bmcgo/component/__init__.py +10 -0
- bmcgo/component/analysis/analysis.py +183 -0
- bmcgo/component/analysis/build_deps.py +165 -0
- bmcgo/component/analysis/data_deps.py +333 -0
- bmcgo/component/analysis/dep-rules.json +912 -0
- bmcgo/component/analysis/dep_node.py +110 -0
- bmcgo/component/analysis/intf_deps.py +163 -0
- bmcgo/component/analysis/intf_validation.py +254 -0
- bmcgo/component/analysis/rule.py +211 -0
- bmcgo/component/analysis/smc_dfx_whitelist.json +11 -0
- bmcgo/component/analysis/sr_validation.py +391 -0
- bmcgo/component/build.py +222 -0
- bmcgo/component/component_dt_version_parse.py +348 -0
- bmcgo/component/component_helper.py +114 -0
- bmcgo/component/coverage/__init__.py +11 -0
- bmcgo/component/coverage/c_incremental_cov_report.template +53 -0
- bmcgo/component/coverage/incremental_cov.py +464 -0
- bmcgo/component/deploy.py +110 -0
- bmcgo/component/gen.py +169 -0
- bmcgo/component/package_info.py +236 -0
- bmcgo/component/template/conanbase.py.mako +278 -0
- bmcgo/component/template/conanfile.deploy.py.mako +40 -0
- bmcgo/component/test.py +947 -0
- bmcgo/errors.py +119 -0
- bmcgo/frame.py +217 -0
- bmcgo/functional/__init__.py +10 -0
- bmcgo/functional/analysis.py +96 -0
- bmcgo/functional/bmc_studio_action.py +98 -0
- bmcgo/functional/check.py +185 -0
- bmcgo/functional/conan_index_build.py +251 -0
- bmcgo/functional/config.py +332 -0
- bmcgo/functional/csr_build.py +724 -0
- bmcgo/functional/deploy.py +263 -0
- bmcgo/functional/diff.py +235 -0
- bmcgo/functional/fetch.py +235 -0
- bmcgo/functional/full_component.py +391 -0
- bmcgo/functional/maintain.py +381 -0
- bmcgo/functional/new.py +166 -0
- bmcgo/functional/schema_valid.py +111 -0
- bmcgo/functional/simple_sign.py +104 -0
- bmcgo/functional/upgrade.py +78 -0
- bmcgo/ipmigen/__init__.py +13 -0
- bmcgo/ipmigen/ctype_defination.py +82 -0
- bmcgo/ipmigen/ipmigen.py +309 -0
- bmcgo/ipmigen/template/cmd.c.mako +366 -0
- bmcgo/ipmigen/template/ipmi.c.mako +25 -0
- bmcgo/ipmigen/template/ipmi.h.mako +51 -0
- bmcgo/logger.py +176 -0
- bmcgo/misc.py +117 -0
- bmcgo/target/app.yml +17 -0
- bmcgo/target/install_sdk.yml +15 -0
- bmcgo/target/personal.yml +53 -0
- bmcgo/target/publish.yml +45 -0
- bmcgo/tasks/__init__.py +11 -0
- bmcgo/tasks/download_buildtools_hm.py +124 -0
- bmcgo/tasks/misc.py +15 -0
- bmcgo/tasks/task.py +354 -0
- bmcgo/tasks/task_build_conan.py +714 -0
- bmcgo/tasks/task_build_rootfs_img.py +595 -0
- bmcgo/tasks/task_buildgppbin.py +88 -0
- bmcgo/tasks/task_buildhpm_ext4.py +82 -0
- bmcgo/tasks/task_create_interface_config.py +122 -0
- bmcgo/tasks/task_download_buildtools.py +99 -0
- bmcgo/tasks/task_download_dependency.py +72 -0
- bmcgo/tasks/task_hpm_envir_prepare.py +112 -0
- bmcgo/tasks/task_packet_to_supporte.py +87 -0
- bmcgo/tasks/task_prepare.py +105 -0
- bmcgo/tasks/task_sign_and_pack_hpm.py +42 -0
- bmcgo/utils/__init__.py +10 -0
- bmcgo/utils/buffer.py +128 -0
- bmcgo/utils/combine_json_schemas.py +170 -0
- bmcgo/utils/component_post.py +54 -0
- bmcgo/utils/component_version_check.py +86 -0
- bmcgo/utils/config.py +1067 -0
- bmcgo/utils/fetch_component_code.py +232 -0
- bmcgo/utils/install_manager.py +61 -0
- bmcgo/utils/installations/__init__.py +10 -0
- bmcgo/utils/installations/base_installer.py +70 -0
- bmcgo/utils/installations/install_consts.py +30 -0
- bmcgo/utils/installations/install_plans/bingo.yml +11 -0
- bmcgo/utils/installations/install_workflow.py +50 -0
- bmcgo/utils/installations/installers/apt_installer.py +177 -0
- bmcgo/utils/installations/installers/pip_installer.py +46 -0
- bmcgo/utils/installations/version_util.py +100 -0
- bmcgo/utils/mapping_config_patch.py +443 -0
- bmcgo/utils/perf_analysis.py +114 -0
- bmcgo/utils/tools.py +704 -0
- bmcgo/worker.py +417 -0
- openubmc_bingo-0.5.240.dist-info/METADATA +30 -0
- openubmc_bingo-0.5.240.dist-info/RECORD +242 -0
- openubmc_bingo-0.5.240.dist-info/WHEEL +5 -0
- openubmc_bingo-0.5.240.dist-info/entry_points.txt +2 -0
- openubmc_bingo-0.5.240.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
bmcgo/__init__.py,sha256=w0aTP66FJIL3wDs6sZXuv6y5Y6KGKxMOTT-t6CVjQtw,562
|
|
2
|
+
bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
|
|
3
|
+
bmcgo/bmcgo_config.py,sha256=q8JtOHFVB5io-VHbUiazpidN1fkLHxDAagGuIl60mb8,7308
|
|
4
|
+
bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
|
|
5
|
+
bmcgo/frame.py,sha256=OUIlplOGD9NXHdubhXSfmR4s5e29AsMyLUkkiWrdRsg,10378
|
|
6
|
+
bmcgo/logger.py,sha256=4TPOkBA80Z00rSCOdEv_WkwE5Kr3HCDt-HuVe9waXck,6645
|
|
7
|
+
bmcgo/misc.py,sha256=CuB_nZvb1v7485pbc13JAaDazBmRzcUcjC0ms3WgHks,3383
|
|
8
|
+
bmcgo/worker.py,sha256=-KxZIW4dziej5wCY-v5XEmtY-CDCL2-FO3VHFovlFbM,15228
|
|
9
|
+
bmcgo/cli/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
10
|
+
bmcgo/cli/cli.py,sha256=hN5cQJuGorIgo3ZlPAQWGH3n7GLwQiqMudhK5cujHC4,21620
|
|
11
|
+
bmcgo/codegen/__init__.py,sha256=eplRBfR_obzVWMQtIeX1RRq6DOEezBx_l1EqcZYLRPM,775
|
|
12
|
+
bmcgo/codegen/c/__init__.py,sha256=tmBG8c6sfxgIj__lyyU5mydWeKBdqbDuIQkLI38lwjI,522
|
|
13
|
+
bmcgo/codegen/c/annotation.py,sha256=c4NiF6b9R-HbwbBGNhnH5zrfcPAYBkhWq30PT9CKzw4,1987
|
|
14
|
+
bmcgo/codegen/c/argument.py,sha256=oH08szRKxkL0S3dUZ3P8x4JV1UVFqadzhuZ343RbuHM,1871
|
|
15
|
+
bmcgo/codegen/c/codegen.py,sha256=Gsa-FK0yWVjOWjZlDHAa4NLnQNKzUPXqdUnjHsVODkE,6798
|
|
16
|
+
bmcgo/codegen/c/comment.py,sha256=iiTn0pl4MZSEbFmpR5pbR7X4EvdszsgmV7owUs25_eM,813
|
|
17
|
+
bmcgo/codegen/c/ctype_defination.py,sha256=0kPw0pk_yLEX6mHDZVcwpxGCD3a7Iqm4gDodexvI2dM,21275
|
|
18
|
+
bmcgo/codegen/c/helper.py,sha256=wUI9TU8XTMnwwi5ZzVpNSPIxds5rxj8NKqm1qZ2ClgI,3123
|
|
19
|
+
bmcgo/codegen/c/interface.py,sha256=uGnROQWr1dUuiAoEfIB9KiovSD0M9LiH98D6qZSDulU,2811
|
|
20
|
+
bmcgo/codegen/c/method.py,sha256=irGc9VU9bb91iapEx_95HWtm00TSHGNlKDXbmPQpPiM,3143
|
|
21
|
+
bmcgo/codegen/c/property.py,sha256=CrVJZRcWRI_JSbxheM78AyLcyntDPe83ryJMUxz0cDw,7988
|
|
22
|
+
bmcgo/codegen/c/renderer.py,sha256=GP0eJCKTrfNDxlC_kQm8kOmvaxZ4yoLghXRAPdjm_uo,859
|
|
23
|
+
bmcgo/codegen/c/signal.py,sha256=KV3kyEXDg8_XJdKYlL04nWC9RI52MzVqlo9JJjG_rOQ,2545
|
|
24
|
+
bmcgo/codegen/c/template/client.c.mako,sha256=urb8NefwhATfGOcrUqlDJpF9KXuM9y885iv_tKGbKxA,5002
|
|
25
|
+
bmcgo/codegen/c/template/client.h.mako,sha256=LG8otvxj3AmYInL_8le9molyG86_xkrrkVKfy5Ako-c,1715
|
|
26
|
+
bmcgo/codegen/c/template/interface.c.mako,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
bmcgo/codegen/c/template/interface.introspect.xml.mako,sha256=--Hu3xUSM23E9T3MVvaw8ElSuIe5yuGZ5XZZvU-PaJM,3150
|
|
28
|
+
bmcgo/codegen/c/template/micro_component.c.mako,sha256=qgNt6O3-hgyWynbbetq4yh5d2IUqAKW15qGr2r7kUk8,1340
|
|
29
|
+
bmcgo/codegen/c/template/public.c.mako,sha256=dOLJ1_SI4pubEci8cQxE8kpXVW4oTXjPOMC_Dmjf6ko,8609
|
|
30
|
+
bmcgo/codegen/c/template/public.h.mako,sha256=TcEJb-BRP1xyMbLhY2mVJ9eF0MJXrezmYbK50mMCOr4,4179
|
|
31
|
+
bmcgo/codegen/c/template/server.c.mako,sha256=0kR3T_b9UDgHVwo-W1lwUXK79beGpe6rGs85bSGA3BU,3621
|
|
32
|
+
bmcgo/codegen/c/template/server.h.mako,sha256=hZg1U64YKtlUm4wuKRobhjGW8e7rzFu9xgpc_0_OBFk,1340
|
|
33
|
+
bmcgo/codegen/lua/.lua-format,sha256=h6RLqe84SjDqKO1mqoCW7XVtrAwDMTRM1Rj8nwzPGwQ,188
|
|
34
|
+
bmcgo/codegen/lua/Makefile,sha256=xhd8OKEqITVMPbf_2L4j5mnLppk9J4rYpV8YoHxdggc,2799
|
|
35
|
+
bmcgo/codegen/lua/__init__.py,sha256=2yU9vzUVQmMJ0qBtNJ-AfKpnOzYZo4wAxlRnpFwgE7M,521
|
|
36
|
+
bmcgo/codegen/lua/codegen.py,sha256=U-SEOsapPNTaHmVJ1ZAeEzkvN4uUfLeS6i0TBXHCUTQ,7605
|
|
37
|
+
bmcgo/codegen/lua/proto/Makefile,sha256=rS4nEBwWJEDYAb5XN9S7SfII7RMFb071jh0eh_KJePo,3098
|
|
38
|
+
bmcgo/codegen/lua/proto/ipmi_types.proto,sha256=BX09mymhhPkWqZE1UCVJACpLBeQh1vQN31oBRVVieFY,377
|
|
39
|
+
bmcgo/codegen/lua/proto/types.proto,sha256=_X8JCKZCvO6PfWh6tuWcEqKHROrh46rCZab-OCkfirA,1162
|
|
40
|
+
bmcgo/codegen/lua/script/check_intfs.py,sha256=6l9fgNJDGDVhVDajjPqsPInjmOYQcUSU5gfHblc4YSQ,5844
|
|
41
|
+
bmcgo/codegen/lua/script/gen_db_json.py,sha256=BxMak-YcmeI_QQLsBaMa9ilB54XvGI7t1EELP9uw3hI,16612
|
|
42
|
+
bmcgo/codegen/lua/script/gen_depends.py,sha256=9erHhPSa6s-Ucv2k1vCc4aR6rsO0WxkM0yfZZKXi-1w,2720
|
|
43
|
+
bmcgo/codegen/lua/script/gen_entry.py,sha256=kGrf9vn6tcUuwcMgA5hAfHSq6sq81jb9mbFf8mQq7kk,10195
|
|
44
|
+
bmcgo/codegen/lua/script/gen_feature_json.py,sha256=gMCAIF_ZMgFIP5wXV_Of51XG61zmsDxhCeqthnj_hHQ,4855
|
|
45
|
+
bmcgo/codegen/lua/script/gen_historical_local_db_json.py,sha256=EH-6RdENDR9iSyVEfSLldDpbEfDCk8vg-pjYRfRn1SM,2527
|
|
46
|
+
bmcgo/codegen/lua/script/gen_intf_json.py,sha256=J_yLbYzvTps1Teej-fecLRR2Vfqz6kWR89P0vYKbDkg,7295
|
|
47
|
+
bmcgo/codegen/lua/script/gen_intf_rpc_json.py,sha256=ySqApgmPXuwoFUsP5c7tUFtPQzFZiHfF4XaJJtveIL0,18827
|
|
48
|
+
bmcgo/codegen/lua/script/gen_ipmi_json.py,sha256=wTktlR1YZO-5PdZid8zMR8JHojL4eAn7LpF76Z46lu4,17340
|
|
49
|
+
bmcgo/codegen/lua/script/gen_mdb_json.py,sha256=2w2fk6jIlMCr6WT5yzLOmWenk_9-lh3e19oV1lDghcY,3027
|
|
50
|
+
bmcgo/codegen/lua/script/gen_rpc_msg_json.py,sha256=6fVtZTHL-v6pdCjkgxFmqCjf511cc9iC9xPTspC4lDU,16407
|
|
51
|
+
bmcgo/codegen/lua/script/gen_schema.py,sha256=6dm40vvdEqPrt917bSH2DWAaQj5C3hjtqS5dDud6GlM,10501
|
|
52
|
+
bmcgo/codegen/lua/script/ipmi_types_pb2.py,sha256=CaCartJKCRgx5WLBg4mbzS8VXwSKy380o6BPYgouAJQ,6665
|
|
53
|
+
bmcgo/codegen/lua/script/lua_format.py,sha256=W3UO-II34qY0_st6QiHwSOrQZnqdz4mLWOIB3pfGe58,2003
|
|
54
|
+
bmcgo/codegen/lua/script/mds_util.py,sha256=CXcmVHimHMEhV7nds-Jxq29sSHJtuKjnoujgzF151JQ,11914
|
|
55
|
+
bmcgo/codegen/lua/script/merge_model.py,sha256=oZ7w_qz1xvv7qWE1jlLaVrSsWRL98tud7OqoKNTyqmY,12378
|
|
56
|
+
bmcgo/codegen/lua/script/merge_proto_algo.py,sha256=IK7mjBYQWzwr5RtyeHp8CQFU_jIpuHkOxe6XSI_PcXU,3007
|
|
57
|
+
bmcgo/codegen/lua/script/proto_loader.py,sha256=w6TTyLvXrdXZKTKOGf87kSuSsbBviVeQJAhtjRc2K2Y,1913
|
|
58
|
+
bmcgo/codegen/lua/script/proto_plugin.py,sha256=hfFr7QXndA1dbFYmpUkemFxkdSchK8i8xml_3cMdBA4,5002
|
|
59
|
+
bmcgo/codegen/lua/script/redfish_source_tree.py,sha256=HzTGY4PViZXLQLOt_U7-YMqE5Ctf-Mxa1p5voOFJU4A,3905
|
|
60
|
+
bmcgo/codegen/lua/script/sep_ipmi_message_cmds.py,sha256=dQZog5e7Eo8Z7xSrp9sUri8vg-VtEj_Sll_E_OhnBw4,8209
|
|
61
|
+
bmcgo/codegen/lua/script/template.py,sha256=eCrS-VJ77vWkVdZwFuqf0CzWFdcxWiRKiX43Js7jGM4,6488
|
|
62
|
+
bmcgo/codegen/lua/script/types_pb2.py,sha256=uiRP_JPK9EF57RUZuomx1K1M9_jZFZgsHXcatFrhzow,23074
|
|
63
|
+
bmcgo/codegen/lua/script/utils.py,sha256=5_7Eikw6YLGT7etawAyS7Gh0C3k4abl8FaB_no-Jt6A,23610
|
|
64
|
+
bmcgo/codegen/lua/script/validate.py,sha256=_RHZBSDZklmcjETD8zRmnhz4DABzKoL-fNl1I9L4Ofs,2096
|
|
65
|
+
bmcgo/codegen/lua/script/yaml_to_json.py,sha256=31J1qJPIAJrx9Cq6bNZks3QCZ754spI5mjZNlshkcJ4,2291
|
|
66
|
+
bmcgo/codegen/lua/script/dto/__init__.py,sha256=nSBpsAbZ7UGd0a25ys_LLEpi3juPtUhVMy_tgGuZsNY,560
|
|
67
|
+
bmcgo/codegen/lua/script/dto/exception.py,sha256=PDuaO5-IoCq1bjPlUMLWc5MGC7LcerPD4EgX5Su6fa4,2026
|
|
68
|
+
bmcgo/codegen/lua/script/dto/kepler_abstract.py,sha256=0rfLwN2n-8-wp7C7isHuTMwDyKkYvwUKujqlmUvtaKA,1741
|
|
69
|
+
bmcgo/codegen/lua/script/dto/options.py,sha256=hthI9v6Pj7VaswtmVt7JP5wydiCfnMmEt8avcPmIolo,1370
|
|
70
|
+
bmcgo/codegen/lua/script/dto/print_simple.py,sha256=imrPW2zlmCIcM6Nfg4HSPE2Y14g2n8uSGj-JOjJ2ijY,723
|
|
71
|
+
bmcgo/codegen/lua/script/dto/redfish_api.py,sha256=iifn1jNHtIoal0-YA-4bvNm8wLOLqloA3S9p99bD8Qg,8411
|
|
72
|
+
bmcgo/codegen/lua/script/dto/url_route.py,sha256=DkgV0Ok5FBgkVqikPcFX_OJdLm0Sd7VL7NATS_aCBpg,7849
|
|
73
|
+
bmcgo/codegen/lua/script/loader/__init__.py,sha256=nSBpsAbZ7UGd0a25ys_LLEpi3juPtUhVMy_tgGuZsNY,560
|
|
74
|
+
bmcgo/codegen/lua/script/loader/file_utils.py,sha256=wBWkW9o0-ij2vG1Vv7OA-EtmBm8D7lrOr5hHP_zVoXM,1124
|
|
75
|
+
bmcgo/codegen/lua/script/loader/kepler_abstract_collect.py,sha256=5NIR71Bt5EPcUEubZfcoYf_o4YKg2yuvawOm-fWGbVA,3031
|
|
76
|
+
bmcgo/codegen/lua/script/loader/kepler_abstract_loader.py,sha256=wQBYQyKhBOeoUn0d1YnYFtOzWPLNZVf7QmUvjLwTMT4,1977
|
|
77
|
+
bmcgo/codegen/lua/script/loader/redfish_loader.py,sha256=k7SUKN0I4Fc6uTugeOsPP0ceRM_tVEBTbQdNl_kDav4,5944
|
|
78
|
+
bmcgo/codegen/lua/script/render_utils/__init__.py,sha256=GFEgwf02ddfSUFJLQl9VJYdFGezQJ3KONay6ERm3mPc,1874
|
|
79
|
+
bmcgo/codegen/lua/script/render_utils/base.py,sha256=E1_V6lmE5CjY2pqSYOpyNVGRVneC4pSLnLoNntm1I6A,823
|
|
80
|
+
bmcgo/codegen/lua/script/render_utils/client_lua.py,sha256=zmFqjlwXGDsPpfptxx4nNqdRw88Q9vNttSMtLARbyV8,3483
|
|
81
|
+
bmcgo/codegen/lua/script/render_utils/controller_lua.py,sha256=_zC7R967a8o3KUzu5GR8HSHG1wP1n6-PLKDz4kdxG7s,2328
|
|
82
|
+
bmcgo/codegen/lua/script/render_utils/db_lua.py,sha256=UtbM4muVI-vl0VzunaT125oNEeLr5max-TtjxRSW2KM,7841
|
|
83
|
+
bmcgo/codegen/lua/script/render_utils/error_lua.py,sha256=wvmdcR0RCgz6ndM-S8AS9hSMr5XhtYocqY0CUawSuY8,5904
|
|
84
|
+
bmcgo/codegen/lua/script/render_utils/factory.py,sha256=TBeUlpYBkybFt53qnts981AZ_2LC2qfRAZP3fSgJxIk,1700
|
|
85
|
+
bmcgo/codegen/lua/script/render_utils/ipmi_lua.py,sha256=ff15kg3yMLVSPGCYi5B6OuJPzTxnuBK5PLKxIFoDp7s,4973
|
|
86
|
+
bmcgo/codegen/lua/script/render_utils/ipmi_message_lua.py,sha256=bVlGt_aAqB52mGZCNCAKwGNk2U-TtduOW1KajeupePs,997
|
|
87
|
+
bmcgo/codegen/lua/script/render_utils/mdb_lua.py,sha256=faA5fCnVBnV1KAQFfiia4cpUHX9GvOyRVsChrv6Z2KE,6117
|
|
88
|
+
bmcgo/codegen/lua/script/render_utils/mdb_register.py,sha256=m4St_oPFnaHZG0PTg_D47_zcrqGexy70otVVuu99VM8,7578
|
|
89
|
+
bmcgo/codegen/lua/script/render_utils/message_lua.py,sha256=JPTvMvUl9yGQcTG-VWlD3UvlLAHFP1vxc7fie2JoRV4,1048
|
|
90
|
+
bmcgo/codegen/lua/script/render_utils/messages_lua.py,sha256=Zn6aKpQb5uYYuP51LReEf9Jue3rLXoNiF6LO8zsL5A8,4924
|
|
91
|
+
bmcgo/codegen/lua/script/render_utils/model_lua.py,sha256=CodrrIH3h93sdgShlqfB68Lfe-iNcd-XoDESq0CtCb8,18016
|
|
92
|
+
bmcgo/codegen/lua/script/render_utils/old_model_lua.py,sha256=wNvtGc3DsuMcHMoy8EJ4ACg1n9m9LtPk6sYGPyYGNLA,15587
|
|
93
|
+
bmcgo/codegen/lua/script/render_utils/plugin_lua.py,sha256=l6agVwBpTeECMhyX_yG1QiXsZmd0HdgxJJh1PtpeR5A,1457
|
|
94
|
+
bmcgo/codegen/lua/script/render_utils/redfish_proto.py,sha256=FOc86XEIzHfPr3o28D3PX4cn723F6PX0pJtGSM1s9xk,3106
|
|
95
|
+
bmcgo/codegen/lua/script/render_utils/request_lua.py,sha256=__gD-ZCxe030kW2oqm4vTlnCUu3JsTGl_mcbnzsvblM,3185
|
|
96
|
+
bmcgo/codegen/lua/script/render_utils/service_lua.py,sha256=TLfeNWF4sDJIYjFapClveAlN8hnbtVWZ8dqo1mbFdqc,4294
|
|
97
|
+
bmcgo/codegen/lua/script/render_utils/utils_message_lua.py,sha256=MPAwH4lZUF1JqZMXmJV8sjBQFqcFKqBter_lpX38h-E,4940
|
|
98
|
+
bmcgo/codegen/lua/script/render_utils/validate_lua.py,sha256=NVjMWZwMxwUj9kdTaCRpyVZJkUQuR9kdzI7Y-MZDPaE,7079
|
|
99
|
+
bmcgo/codegen/lua/templates/Makefile,sha256=eVtX7wdtSKkjsox5pjtRPzXdrvl_qYT-cMgDVZF2P7U,3732
|
|
100
|
+
bmcgo/codegen/lua/templates/errors.lua.mako,sha256=T93tESJl0K3r5izufq6NsqqCptQbVslpsTEjkQdDq0U,1536
|
|
101
|
+
bmcgo/codegen/lua/templates/messages.lua.mako,sha256=GfWjgRy0is3d-U8-Wq-i_oWguFi5d1VHQKv0pJhV9cE,1074
|
|
102
|
+
bmcgo/codegen/lua/templates/apps/Makefile,sha256=enAm7p9Tk5Wd9OH-SkJu3T4B-9gjqYaG3gsCZW7C8Xg,14126
|
|
103
|
+
bmcgo/codegen/lua/templates/apps/Makefile.mdb.mk,sha256=Qmd-n_YsQbfnpED_6PIp_6pL13w6UCCGgBoBA4h6r_0,3296
|
|
104
|
+
bmcgo/codegen/lua/templates/apps/app.lua.mako,sha256=Y_aZCPyNgeqfa39_RWxV-_m3out1p4vTTWnzqXtPV7E,276
|
|
105
|
+
bmcgo/codegen/lua/templates/apps/class.lua.mako,sha256=FZsGAZeiytVwihxyyjhw6Hvv4V01Lhtz8Q9FPZYieZw,1208
|
|
106
|
+
bmcgo/codegen/lua/templates/apps/client.lua.mako,sha256=4TgJawCCQhn0yqY0YnL1i_GHhIKOAS0Z5-sBSnS_LLs,17976
|
|
107
|
+
bmcgo/codegen/lua/templates/apps/controller.lua.mako,sha256=QjBCqvabUY0I09edYFX26sq62TO3fR2mcdiX25O2ygM,10476
|
|
108
|
+
bmcgo/codegen/lua/templates/apps/datas.lua.mako,sha256=xAU1c9xe3-bcVfxA3vSbvrkCDcKqCv65gM92lcSPwvo,135
|
|
109
|
+
bmcgo/codegen/lua/templates/apps/db.lua.mako,sha256=wROjv7qofMaZhTrAywhIWhwuDL9Gs3UMHSQJ97tKZD0,2723
|
|
110
|
+
bmcgo/codegen/lua/templates/apps/entry.lua.mako,sha256=vedgTAr6Y9AIn69C_1qb5kzKf4N5w6ptrutanRMJTCA,4049
|
|
111
|
+
bmcgo/codegen/lua/templates/apps/feature.lua.mako,sha256=c6gZ4fc62GG2Eg15UitkHVHE9bEq7qceOIwIsZ6AOtk,1105
|
|
112
|
+
bmcgo/codegen/lua/templates/apps/generate_route.mako,sha256=1T0ViRtA-m4MaXyv4vyGj-okc3tPsChdL205FIwTgoI,716
|
|
113
|
+
bmcgo/codegen/lua/templates/apps/impl_feature.lua.mako,sha256=lmb99UUocc7lKUMMl70RjfOjhkQCl7EZBGgqw-F6pBE,3255
|
|
114
|
+
bmcgo/codegen/lua/templates/apps/ipmi.lua.mako,sha256=ctADHdoyu1h1Oeceh4W8OC837zYiLsc-jRNSPn-A8GI,3834
|
|
115
|
+
bmcgo/codegen/lua/templates/apps/ipmi_cmd.lua.mako,sha256=om0Iw87ZunwFq_WZM_IyDVaj-7S7wTW9KZdowzQeRrw,408
|
|
116
|
+
bmcgo/codegen/lua/templates/apps/ipmi_message.lua.mako,sha256=nNwKm3SI_5fFFlfA92KlWCq5LgI4CQChmAH3Y2YTd5A,957
|
|
117
|
+
bmcgo/codegen/lua/templates/apps/local_db.lua.mako,sha256=CxyeW41Oo8G7PsRpO-k5a0ios1Y5m-DSRWKjfhNvI98,8408
|
|
118
|
+
bmcgo/codegen/lua/templates/apps/main.lua.mako,sha256=KgzXVdDUg1_h5Wak1IN6EEo8f26kt3yCyyH-YWwy1t4,577
|
|
119
|
+
bmcgo/codegen/lua/templates/apps/mc.lua.mako,sha256=_PMYCI0-RImOv2LQYZU0aUKuL4jMAussx6ViEFB9Kck,1115
|
|
120
|
+
bmcgo/codegen/lua/templates/apps/mdb.lua.mako,sha256=SWZejbAl-27d8Q_pb_I0IOAxxKIX3aEd2IXke2QHyvg,1237
|
|
121
|
+
bmcgo/codegen/lua/templates/apps/mdb_interface.lua.mako,sha256=wZYf_FZa8nQO0bF9X4ilog47RO7I3VYE1cZdQ8IPg2M,2371
|
|
122
|
+
bmcgo/codegen/lua/templates/apps/message.lua.mako,sha256=Rj1B_wi8dc2IUvoT0-Q2TfgUpIBxsXXaeqk00zXW1RA,1025
|
|
123
|
+
bmcgo/codegen/lua/templates/apps/model.lua.mako,sha256=emHNRo9UeQKOtQzt2vZ8CWnt_eabReSTn0fMkSGKRsk,8839
|
|
124
|
+
bmcgo/codegen/lua/templates/apps/orm_classes.lua.mako,sha256=Oz2fKu5uhDJn7d0q178rgX9IDJ4Xmm0nfZYYrek5SNY,335
|
|
125
|
+
bmcgo/codegen/lua/templates/apps/plugin.lua.mako,sha256=w8aVvxcuNKEmHjWiwFhe6aSIxkMHJKMuc5EaKNgb7DQ,246
|
|
126
|
+
bmcgo/codegen/lua/templates/apps/redfish.proto.mako,sha256=0yisLKgHi-wuipvjbVZGYH_8ESCEr4wcB3KvAWsJUyE,2628
|
|
127
|
+
bmcgo/codegen/lua/templates/apps/service.lua.mako,sha256=WG_TyW8RAMZVslTkaznCAX9ZSXTAFsEEHU5-FGR9pQA,15672
|
|
128
|
+
bmcgo/codegen/lua/templates/apps/signal_listen.lua.mako,sha256=K3I2xg7iXw60Z-PTiSFq_BNJFHjK6GdBOxUF3XfXHNA,602
|
|
129
|
+
bmcgo/codegen/lua/templates/apps/utils/default_intf.lua.mako,sha256=PD8_TWmefd17hP03_BUPMnuvRa0sheLlYMF0QOYGwWM,1392
|
|
130
|
+
bmcgo/codegen/lua/templates/apps/utils/enum.mako,sha256=6rmXhAScF2yx4izXa0V1mQimqgWGysdMbAEIGhUVcU0,499
|
|
131
|
+
bmcgo/codegen/lua/templates/apps/utils/imports.mako,sha256=Dj7WEQ-rzy1j19Ox38TA99vzK2So2VdAcdZ9CTKsg5c,433
|
|
132
|
+
bmcgo/codegen/lua/templates/apps/utils/mdb_intf.lua.mako,sha256=nGuCsYt3d0MUGVZyW8B_24xCVoKLcSDOrEufPox2XXc,1262
|
|
133
|
+
bmcgo/codegen/lua/templates/apps/utils/mdb_obj.lua.mako,sha256=sq4tCcQQK7HLcfyszHrYmBy5HlgOt4jyQxHqvzwSzeY,801
|
|
134
|
+
bmcgo/codegen/lua/templates/apps/utils/message.mako,sha256=IAKhqdzR-dPzPF_akR1EieD-aQ2B33DaeU-287gXQN4,4958
|
|
135
|
+
bmcgo/codegen/lua/templates/apps/utils/request.lua.mako,sha256=8ZQ_SxYq1s0JjIDUyEAVlSj0trGdQSaz5UohjMf0SfQ,3071
|
|
136
|
+
bmcgo/codegen/lua/templates/apps/utils/validate.mako,sha256=xRfMRc2Sx21oLUkd6LaTBKFL4QUyNJoC9BAWJZiQ74M,4280
|
|
137
|
+
bmcgo/codegen/lua/templates/new_app/.clang-format.mako,sha256=W3xNsem2Td701UMaXKKD7aWmBgIy7hkUsjWggKTtS6M,4564
|
|
138
|
+
bmcgo/codegen/lua/templates/new_app/.gitignore.mako,sha256=KG5Xr_4LJjpebLPltqI4fXel6h9yhtzA9erixjzN9r0,325
|
|
139
|
+
bmcgo/codegen/lua/templates/new_app/CHANGELOG.md.mako,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
+
bmcgo/codegen/lua/templates/new_app/CMakeLists.txt.mako,sha256=rumbBcJHlNy76JA4NCjAZnwoiAHYclKSy4ePPX6wgeo,1418
|
|
141
|
+
bmcgo/codegen/lua/templates/new_app/Makefile.mako,sha256=KFU3hg7x52HSVhuTImNAz5hJNsdHd2_GDguf-3M7TKw,916
|
|
142
|
+
bmcgo/codegen/lua/templates/new_app/README.md.mako,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
+
bmcgo/codegen/lua/templates/new_app/conanfile.py.mako,sha256=ENffxrlxvBC82NOnltpwMJ3VPWrRqOvESr-XyKHQTT4,103
|
|
144
|
+
bmcgo/codegen/lua/templates/new_app/config.cfg.mako,sha256=6rKCUQ4_ZtQk8BiA4Bc3I9YPSt1-jPbncKBQBy3-TiQ,159
|
|
145
|
+
bmcgo/codegen/lua/templates/new_app/permissions.ini.mako,sha256=y719Louk0TVyhi3ChhdVWXX-sA1Uyd3uBpq2ttJkqe8,687
|
|
146
|
+
bmcgo/codegen/lua/templates/new_app/mds/model.json.mako,sha256=Kqm5ja2hDMjnOilYIh7Yg-PTNulqvrtDy4LMFYFnqR4,8
|
|
147
|
+
bmcgo/codegen/lua/templates/new_app/mds/service.json.mako,sha256=1C0kzeuNUPDoLC-6imT6rHgHDu2K4yWqsdWJPuYF-yQ,412
|
|
148
|
+
bmcgo/codegen/lua/templates/new_app/src/lualib/${project_name}_app.lua.mako,sha256=S4mxGURJK8G4R2RVvb_ckosG9iGTP15FeWieb3Gnams,271
|
|
149
|
+
bmcgo/codegen/lua/templates/new_app/src/service/main.lua.mako,sha256=XjQ4t2675G6d7xWKbQ6v41Ixj2_ai8uXHJH9SJcaYVQ,652
|
|
150
|
+
bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.conf.mako,sha256=YJqP0IUGWcPYsfq_0rBaV1fOprOeXHz2tQ-E726x9Js,248
|
|
151
|
+
bmcgo/codegen/lua/templates/new_app/test/integration/test_${project_name}.lua.mako,sha256=Its7XomnqLRhVYa4QffT8RA0f1YzDzLJD0pDUFg8Lm4,1266
|
|
152
|
+
bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako,sha256=3UleW8XN8VEF7sxEzIjn_BtTOSIg_gW8dVZSBNIDMGA,575
|
|
153
|
+
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako,sha256=b6wu4leCGtNlXJ_kmEjtJkQqIBSkYz6EfWViZGneCqY,400
|
|
154
|
+
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/multi-user.target.wants/${project_name}.service.link,sha256=NJ6AGF9O0FGEM5dwb62LS2_KO7T3A2_lcHYFlY-KR0k,26
|
|
155
|
+
bmcgo/component/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
156
|
+
bmcgo/component/build.py,sha256=LG7NwlEctiKaMhbluUV-8vMx4efFFkbwTPuAYxeNWkw,9621
|
|
157
|
+
bmcgo/component/component_dt_version_parse.py,sha256=KyrfyjbrszU-hhG1Hr6TzKuSabmGIK51b_3KuVBv5-g,14139
|
|
158
|
+
bmcgo/component/component_helper.py,sha256=VmLsmvWTJT5861ec70VC0lEIPZI9njMtn3Zo3L6hamM,4146
|
|
159
|
+
bmcgo/component/deploy.py,sha256=PBriI_P4_gfhXH6pP6AXhfTbaJTLNTDJ9dI7rYwRmgs,4622
|
|
160
|
+
bmcgo/component/gen.py,sha256=RVWfwiUWXyqbTW5Xj5rtVD7SA05D4sXf5Ea0T7gCfO0,7234
|
|
161
|
+
bmcgo/component/package_info.py,sha256=5xh3yCXXcuCpEY3j_81K3639IQLx8idnAoxLwtQ5npE,10479
|
|
162
|
+
bmcgo/component/test.py,sha256=kC8QsM3PypcDDy9VhBNQ4iutyBbPztMtlFHGY8a82FE,43332
|
|
163
|
+
bmcgo/component/analysis/analysis.py,sha256=AzOztLmmt4URooNe0wKgF8CfWgrk3-1RMaH5wgoTJkg,8544
|
|
164
|
+
bmcgo/component/analysis/build_deps.py,sha256=cyQh5D3R1syQfMJcNxEIKKSJGanPMNRFPGlJRitDAa0,7324
|
|
165
|
+
bmcgo/component/analysis/data_deps.py,sha256=UkuqMhJseZIXMZWC2cJ4csko7rENPlpXJUU0eRWVZNM,16148
|
|
166
|
+
bmcgo/component/analysis/dep-rules.json,sha256=mcLectRcK97MytJlBtATGzyS7XM8WMMuCSpiwdewBuQ,33665
|
|
167
|
+
bmcgo/component/analysis/dep_node.py,sha256=DSB30uim1Qrjs0zuphz0JXetP0ECBC7rzCElFNWQpwM,4598
|
|
168
|
+
bmcgo/component/analysis/intf_deps.py,sha256=IlcPixdaBpXpb6U4M-I1hRRGHCg5SCUg07V6kAosacE,7382
|
|
169
|
+
bmcgo/component/analysis/intf_validation.py,sha256=zp_LiiJYYP8Y0lsFISX1KLY172q-qEOz0nFuQ--uPFQ,11131
|
|
170
|
+
bmcgo/component/analysis/rule.py,sha256=xvntmvFdGa0J8WBlrHDdJ5bcl3jr4pXezR3KKvOg4Ag,7549
|
|
171
|
+
bmcgo/component/analysis/smc_dfx_whitelist.json,sha256=dy_6-FddhG6UY7D1KUCW3Vme27eEmxpOLHefsCM0-rQ,192
|
|
172
|
+
bmcgo/component/analysis/sr_validation.py,sha256=i1mlJb_D7RqE510LSAcCW81K1VUmZ7oSmLiMfUgdSJI,15598
|
|
173
|
+
bmcgo/component/coverage/__init__.py,sha256=ZgUEyI86FTlOdBzcuTzz7UqTtfWcz416Gx4BCqcQlhA,557
|
|
174
|
+
bmcgo/component/coverage/c_incremental_cov_report.template,sha256=FPhK1DZtmWsjDxa32R1ViH3IGCtNHcx0zFfgRo0s2nI,1576
|
|
175
|
+
bmcgo/component/coverage/incremental_cov.py,sha256=DcXT8jDz3xs_2OzjGMcGwL6UfLZ7gFCO-XHsfUesTDs,17118
|
|
176
|
+
bmcgo/component/template/conanbase.py.mako,sha256=MMZezCl5oFucRraOJt1WjmPL2S7wa4Hzfc7yDfTkW7Q,10949
|
|
177
|
+
bmcgo/component/template/conanfile.deploy.py.mako,sha256=zpxluBjUFmJHfFrnBknxZ3cv3cxcqzJuGh2eN0uMXZA,889
|
|
178
|
+
bmcgo/functional/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
179
|
+
bmcgo/functional/analysis.py,sha256=qjJQqd895-QmRpvges6ynwgV4w4vUYUqrMrajNUWON0,3862
|
|
180
|
+
bmcgo/functional/bmc_studio_action.py,sha256=Gg96UB8QtnhsaqSdMhXuS9fddzAFPhR6UYCpto9UOYA,3605
|
|
181
|
+
bmcgo/functional/check.py,sha256=LWoDAtEB2p65FemLEoNGz33ldtkbcJlc-uz8hwJl89U,8183
|
|
182
|
+
bmcgo/functional/conan_index_build.py,sha256=UUpsDcCb1tfZlPONWvfXqzvaOkCUPJ4Z-2S0bNy5BrM,10176
|
|
183
|
+
bmcgo/functional/config.py,sha256=Yctxlxz9ywEacTbVAvJZOH0pjsxMnQ6te6kjMM2g3d0,10552
|
|
184
|
+
bmcgo/functional/csr_build.py,sha256=l2ELOvnT43ZzsUt_9xx-aJhi3jBYe2S6Mo-ULjmcl2s,30632
|
|
185
|
+
bmcgo/functional/deploy.py,sha256=2NsxCpoZjL4jTyRpbIp20-EKKbQkQe-Hsm20uxHK2Xc,10677
|
|
186
|
+
bmcgo/functional/diff.py,sha256=L-FFytMtxWtcdJCRPG68yapXgju_qDVOHR3f7NQzqEY,10558
|
|
187
|
+
bmcgo/functional/fetch.py,sha256=JE4iZt6a-vjuCrDg9RYDCTyLf5TvXZQvs0PgD3VBvtQ,10767
|
|
188
|
+
bmcgo/functional/full_component.py,sha256=ESKPnrFc08MtSZw8Sk3uWJxPM2qZ5FNZ-CmUxrttngM,16269
|
|
189
|
+
bmcgo/functional/maintain.py,sha256=8bUwaCsZAiBWDrf8NsdVoOvyMY2JOoXdzvahU9Hd8-0,17951
|
|
190
|
+
bmcgo/functional/new.py,sha256=A4--cy3R-moFD8KtrGGIzMiVVwnB2rL8qlrJz1dGGMg,6157
|
|
191
|
+
bmcgo/functional/schema_valid.py,sha256=jk4blLZgQCJv4eOY0YK2Fy0oRCdG1sfSssd2rGT-Eoc,3910
|
|
192
|
+
bmcgo/functional/simple_sign.py,sha256=AstEnGzcTIxAYs5U9G82JDXj7CnfhN9LyYcnkpGEH2Y,4086
|
|
193
|
+
bmcgo/functional/upgrade.py,sha256=pdV-KHHBArE7HcvlbWN7TPwR3JbohWMO7XJV0zxnZRc,2384
|
|
194
|
+
bmcgo/ipmigen/__init__.py,sha256=xrppKUuQkt1jTqnr6gHWiWeEyUMFJeiZxcA7Hx9XXUo,789
|
|
195
|
+
bmcgo/ipmigen/ctype_defination.py,sha256=PmkKRWTvmVQsZ-njio16ayXpsyFhC6le9Tu0baWU-xw,3179
|
|
196
|
+
bmcgo/ipmigen/ipmigen.py,sha256=SZWoylTM-Tp4KSOQyfHidMjhhIzp4WIa40oxcrFfKB8,14506
|
|
197
|
+
bmcgo/ipmigen/template/cmd.c.mako,sha256=5avKDLnEw0PscXZpj0Da0y7GcwQ2Q4lBy-yofw1BJIk,13955
|
|
198
|
+
bmcgo/ipmigen/template/ipmi.c.mako,sha256=LNrJmXQut4923aQkkkuHFp9tTR9ExrBi0WYfxVLTykU,696
|
|
199
|
+
bmcgo/ipmigen/template/ipmi.h.mako,sha256=veZ42lJq4hljyNH5uL_yesHpoANF3pprTL1VwTlflqs,2006
|
|
200
|
+
bmcgo/target/app.yml,sha256=OaCk1YntS6h_cKUt8rvJ7fkqXMFjK5v4Iu2Nhx66ZFY,469
|
|
201
|
+
bmcgo/target/install_sdk.yml,sha256=jgE_pkkIfiSIoDI91qxoHHjXFx9zcBUDQD-FfDaxcZg,540
|
|
202
|
+
bmcgo/target/personal.yml,sha256=4sQyorfQF65fihzF_8CFST6Koy06a-9-W-wrz5IVmFA,1823
|
|
203
|
+
bmcgo/target/publish.yml,sha256=4V6oWdMkJP_hmqiTnOH7EM5GTAS-nNzSUCfTSaxYmRA,1497
|
|
204
|
+
bmcgo/tasks/__init__.py,sha256=VapgzhPMmB7dzPIRohoVm1jjfVn_v97cYNCRmkxScaU,539
|
|
205
|
+
bmcgo/tasks/download_buildtools_hm.py,sha256=f4UxStARc8Z8DnT_5O6ONajQ7P0sKyJ8brixr43fHVQ,5988
|
|
206
|
+
bmcgo/tasks/misc.py,sha256=GK_bSDLGZW0FxywB2ICG1iIEz2y2QoCb1YQQk8SYOIA,711
|
|
207
|
+
bmcgo/tasks/task.py,sha256=Ek16AuyHYIPPOmg3bx4Sv5j973kqBZroS3SOIpPcxbE,14245
|
|
208
|
+
bmcgo/tasks/task_build_conan.py,sha256=3BtapZXt09cKWcR_Wa8fXhrQDCvKWQtYjxG5RSC8F-U,32823
|
|
209
|
+
bmcgo/tasks/task_build_rootfs_img.py,sha256=uFrMfrpaAHB_2QQdEo46P8TgFrGMTG-xfZUlxzJLSQ0,30443
|
|
210
|
+
bmcgo/tasks/task_buildgppbin.py,sha256=yhRKPflbN8V2xeg_MW54njzRH1pvtrtyzRODZE3m-jo,3709
|
|
211
|
+
bmcgo/tasks/task_buildhpm_ext4.py,sha256=DBZnmU_eb14J0CW_wVoCc9VKnssFF1vXmRhLJQ6kR28,3482
|
|
212
|
+
bmcgo/tasks/task_create_interface_config.py,sha256=rkFRGLrUgYCics-n1CKwCoQscU2BaRQkH7KP3zwJ6FI,5393
|
|
213
|
+
bmcgo/tasks/task_download_buildtools.py,sha256=DC68Tp80eXu7LVleRtYhKeUKJJM5I8va-RvXS3aiFLo,4222
|
|
214
|
+
bmcgo/tasks/task_download_dependency.py,sha256=IyWtgm7k70a6fhaCFlvAOCzFMxXxXGSfikbPIZ23BBU,3093
|
|
215
|
+
bmcgo/tasks/task_hpm_envir_prepare.py,sha256=yrsjFZKEPpaw_bTuvhjxIELicLKBAhrktHNuONN3Xxw,3871
|
|
216
|
+
bmcgo/tasks/task_packet_to_supporte.py,sha256=eaNtri3YQfXFBnceM1-2C_6AgMgrGxEj4xKXTgNRPH8,4100
|
|
217
|
+
bmcgo/tasks/task_prepare.py,sha256=PaP_yBnOGHDwokI7T7w43p5lZzekbPCHIoxS5_aSngY,4546
|
|
218
|
+
bmcgo/tasks/task_sign_and_pack_hpm.py,sha256=QfkvGnA5jrKRv7-MmZV8JzIhttrPZxCAdLYr0QpxGNM,1985
|
|
219
|
+
bmcgo/utils/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
220
|
+
bmcgo/utils/buffer.py,sha256=t1SkWntWksboNFMPsltslwRdXZi3FAe8eV0JAAE7Vto,4004
|
|
221
|
+
bmcgo/utils/combine_json_schemas.py,sha256=08JrAlLeo_JgUqzYcZNgSwJZPLfjbWVJ4esPPt9bPMY,7967
|
|
222
|
+
bmcgo/utils/component_post.py,sha256=b2sr2IVensmnvcB7VcbIHkzCtS-fbtjPb4k1LiNReQk,2296
|
|
223
|
+
bmcgo/utils/component_version_check.py,sha256=ZhY3LUgmvuoDTlSjyFeh2blmcYbFcwtijNaOM0ntRtE,3457
|
|
224
|
+
bmcgo/utils/config.py,sha256=U5nKBQ2s7nx7KS2yWIeofOAL_Wo-oJAr_kv4DZIdLd0,47767
|
|
225
|
+
bmcgo/utils/fetch_component_code.py,sha256=vH9rY2YcXK5tBUEK7fLmKVxK9cYDM39FHmManBQA2KQ,10011
|
|
226
|
+
bmcgo/utils/install_manager.py,sha256=UswQ_q5Dd1dUlzfdvtDtQRbeQNL7lh2Gs-Ha6lYgD7k,2460
|
|
227
|
+
bmcgo/utils/mapping_config_patch.py,sha256=_gKfZnrvsLPgHn1yXhEJRVTAeuGpeGD9T-Pqyw5Ydys,16827
|
|
228
|
+
bmcgo/utils/perf_analysis.py,sha256=fh6lV9AAKVhpPkGPwAJ8EWfGfUoHjqGYQxrvc32Xiac,4767
|
|
229
|
+
bmcgo/utils/tools.py,sha256=o2wKHuv5bX_iktbc-LqqXHOOzNmR3NDC2L9Yq6zEBxA,28592
|
|
230
|
+
bmcgo/utils/installations/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
231
|
+
bmcgo/utils/installations/base_installer.py,sha256=QvAtfPgdwLSV5w3w1iVrpuWBAZUgNHp5C93gKtDjR0E,2827
|
|
232
|
+
bmcgo/utils/installations/install_consts.py,sha256=qIktIJiX-TqdLMAuIx5htM5L_NPmcNksZ-S1gbPyt3U,1038
|
|
233
|
+
bmcgo/utils/installations/install_workflow.py,sha256=VQRE697kflBtBXbRLtMMB1Z1HzAARsaVbIeyiQkTxII,1782
|
|
234
|
+
bmcgo/utils/installations/version_util.py,sha256=xyubh5rwD8_xqLgL8mL5ecz83T98M94gPaBTVlZpCXQ,3232
|
|
235
|
+
bmcgo/utils/installations/install_plans/bingo.yml,sha256=i-A7OwByvyDCew2RZTdK0n9ESgYfmPUof25IYtwo8Y8,292
|
|
236
|
+
bmcgo/utils/installations/installers/apt_installer.py,sha256=vvKEN6R7GWd8N5axsm0FFDMMzR7UhtOu_N_Tk3HcLmA,6741
|
|
237
|
+
bmcgo/utils/installations/installers/pip_installer.py,sha256=hZtTB5KyhNp3pquBl0k5Xjp5_0RvrG_0jwnG9yGDXmk,1869
|
|
238
|
+
openubmc_bingo-0.5.240.dist-info/METADATA,sha256=s1S1owj-ueYTLJNf1osm3OO_WsT1xCz1UAhEMnOnrSk,904
|
|
239
|
+
openubmc_bingo-0.5.240.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
240
|
+
openubmc_bingo-0.5.240.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
|
|
241
|
+
openubmc_bingo-0.5.240.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
|
|
242
|
+
openubmc_bingo-0.5.240.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bmcgo
|