openubmc-bingo 0.5.265__py3-none-any.whl → 0.5.270__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 +1 -1
- bmcgo/codegen/lua/v1/script/render_utils/client_lua.py +4 -10
- bmcgo/codegen/lua/v1/templates/apps/client.lua.mako +10 -20
- bmcgo/component/analysis/dep-rules.json +27 -5
- bmcgo/functional/analysis.py +4 -2
- bmcgo/tasks/task_build_rootfs_img.py +5 -28
- bmcgo/utils/tools.py +8 -35
- {openubmc_bingo-0.5.265.dist-info → openubmc_bingo-0.5.270.dist-info}/METADATA +1 -1
- {openubmc_bingo-0.5.265.dist-info → openubmc_bingo-0.5.270.dist-info}/RECORD +12 -12
- {openubmc_bingo-0.5.265.dist-info → openubmc_bingo-0.5.270.dist-info}/WHEEL +0 -0
- {openubmc_bingo-0.5.265.dist-info → openubmc_bingo-0.5.270.dist-info}/entry_points.txt +0 -0
- {openubmc_bingo-0.5.265.dist-info → openubmc_bingo-0.5.270.dist-info}/top_level.txt +0 -0
bmcgo/__init__.py
CHANGED
|
@@ -71,16 +71,6 @@ class ConsistencyClientLuaUtils(Base, Utils, MdbRegister):
|
|
|
71
71
|
return ", path_params"
|
|
72
72
|
return "path_params"
|
|
73
73
|
|
|
74
|
-
def get_path_namespace_name(self, index):
|
|
75
|
-
return f"path_namespace{index + 1}"
|
|
76
|
-
|
|
77
|
-
def get_path_namespace_list(self, paths):
|
|
78
|
-
indexed_path_namespace = [
|
|
79
|
-
f"path_namespace{index + 1}"
|
|
80
|
-
for index, _ in enumerate(paths)
|
|
81
|
-
]
|
|
82
|
-
return "{" + ", ".join(indexed_path_namespace) + "}"
|
|
83
|
-
|
|
84
74
|
def get_dep_properties(self, properties):
|
|
85
75
|
if properties == ["*"]:
|
|
86
76
|
return ""
|
|
@@ -96,6 +86,10 @@ class ConsistencyClientLuaUtils(Base, Utils, MdbRegister):
|
|
|
96
86
|
prefix = path_with_params.split("/' ..")[0]
|
|
97
87
|
return f"path_params and ({path_with_params}) or {prefix}'"
|
|
98
88
|
|
|
89
|
+
def get_paths_namespace(self, paths):
|
|
90
|
+
paths_str = "{" + ", ".join(f'"{str(path)}"' for path in paths) + "}"
|
|
91
|
+
return f"mdb.get_paths_namespace(path_params, {paths_str})"
|
|
92
|
+
|
|
99
93
|
def get_path_patterns(self, paths):
|
|
100
94
|
return MdbRegister.convert_to_lua(self, paths)
|
|
101
95
|
|
|
@@ -105,40 +105,30 @@ ${default_intf.render(default_path, ClassName, rpc['intf_class'], rpc['interface
|
|
|
105
105
|
% for rpc in root['interfaces']:
|
|
106
106
|
% if 'paths' in rpc and not rpc['virtual']:
|
|
107
107
|
function ${ClassName}:MutipleGet${rpc['intf_class']}Objects(${render_utils.get_path_arg(rpc["paths"], False)})
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
%endfor
|
|
111
|
-
return get_non_virtual_interface_objects(self:get_bus(), '${rpc['interface']}', ${'true' if rpc['retry'] else 'false'}, ${render_utils.get_path_namespace_list(rpc["paths"])})
|
|
108
|
+
local paths_namespace = ${render_utils.get_paths_namespace(rpc["paths"])}
|
|
109
|
+
return get_non_virtual_interface_objects(self:get_bus(), '${rpc['interface']}', ${'true' if rpc['retry'] else 'false'}, paths_namespace)
|
|
112
110
|
end
|
|
113
111
|
|
|
114
112
|
function ${ClassName}:MutipleForeach${rpc['intf_class']}Objects(cb${render_utils.get_path_arg(rpc["paths"])})
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
%endfor
|
|
118
|
-
return foreach_non_virtual_interface_objects(self:get_bus(), '${rpc['interface']}', cb, ${'true' if rpc['retry'] else 'false'}, ${render_utils.get_path_namespace_list(rpc["paths"])})
|
|
113
|
+
local paths_namespace = ${render_utils.get_paths_namespace(rpc["paths"])}
|
|
114
|
+
return foreach_non_virtual_interface_objects(self:get_bus(), '${rpc['interface']}', cb, ${'true' if rpc['retry'] else 'false'}, paths_namespace)
|
|
119
115
|
end
|
|
120
116
|
|
|
121
117
|
% if rpc['dep_properties']:
|
|
122
118
|
function ${ClassName}:MutipleOn${rpc['intf_class']}PropertiesChanged(cb${render_utils.get_path_arg(rpc["paths"])})
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
%endfor
|
|
126
|
-
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_properties_changed(self:get_bus(), ${render_utils.get_path_namespace_list(rpc["paths"])}, cb, '${rpc['interface']}'${render_utils.get_dep_properties(rpc["dep_properties"])})
|
|
119
|
+
local paths_namespace = ${render_utils.get_paths_namespace(rpc["paths"])}
|
|
120
|
+
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_properties_changed(self:get_bus(), paths_namespace, cb, '${rpc['interface']}'${render_utils.get_dep_properties(rpc["dep_properties"])})
|
|
127
121
|
end
|
|
128
122
|
%endif
|
|
129
123
|
|
|
130
124
|
function ${ClassName}:MutipleOn${rpc['intf_class']}InterfacesAdded(cb${render_utils.get_path_arg(rpc["paths"])})
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
%endfor
|
|
134
|
-
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_interfaces_added(self:get_bus(), ${render_utils.get_path_namespace_list(rpc["paths"])}, cb, '${rpc['interface']}')
|
|
125
|
+
local paths_namespace = ${render_utils.get_paths_namespace(rpc["paths"])}
|
|
126
|
+
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_interfaces_added(self:get_bus(), paths_namespace, cb, '${rpc['interface']}')
|
|
135
127
|
end
|
|
136
128
|
|
|
137
129
|
function ${ClassName}:MutipleOn${rpc['intf_class']}InterfacesRemoved(cb${render_utils.get_path_arg(rpc["paths"])})
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
%endfor
|
|
141
|
-
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_interfaces_removed(self:get_bus(), ${render_utils.get_path_namespace_list(rpc["paths"])}, cb, '${rpc['interface']}')
|
|
130
|
+
local paths_namespace = ${render_utils.get_paths_namespace(rpc["paths"])}
|
|
131
|
+
self.signal_slots[#self.signal_slots + 1] = subscribe_signal.on_interfaces_removed(self:get_bus(), paths_namespace, cb, '${rpc['interface']}')
|
|
142
132
|
end
|
|
143
133
|
|
|
144
134
|
<% continue %>
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Version": "0.0.
|
|
2
|
+
"Version": "0.0.46",
|
|
3
3
|
"Description": "此文件对iBMCV3子系统与子系统、组件与组件的依赖关系约束进行了描述, 只有子系统架构师/领域专家才能修改",
|
|
4
|
+
"Changelog": {
|
|
5
|
+
"0.0.46": [
|
|
6
|
+
"1、om子系统增加可观测组件observability",
|
|
7
|
+
"2、opensource增加可观测需要的开源软件, 包括fluent-bit, libyaml, opentelemetry, grpc, abseil, protobuf, re2, c_ares,opentelemetry-proto",
|
|
8
|
+
"3、om子系统增加对hardware子系统依赖白名单: bmc.kepler.Managers.SOC, 解决om子系统组件读取启动时间规格的问题",
|
|
9
|
+
"4、om子系统增加对hardware子系统依赖白名单: bmc.kepler.Managers.Syslog.Report, 解决板卡芯片日志上报依赖问题",
|
|
10
|
+
"5、om子系统增加对hardware子系统依赖白名单: bmc.kepler.Systems.Storage.Drive, 解决资产报废进度异常问题"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
4
13
|
"Subsystems": {
|
|
5
14
|
"opensource" : {
|
|
6
15
|
"Apps": [
|
|
@@ -10,7 +19,8 @@
|
|
|
10
19
|
"skynet",
|
|
11
20
|
"openssh",
|
|
12
21
|
"NTP_-_The_Network_Time_Protocol",
|
|
13
|
-
"Linux_Kernel"
|
|
22
|
+
"Linux_Kernel",
|
|
23
|
+
"fluent-bit"
|
|
14
24
|
],
|
|
15
25
|
"Libraries": [
|
|
16
26
|
"curl",
|
|
@@ -28,7 +38,15 @@
|
|
|
28
38
|
"sqlite3",
|
|
29
39
|
"Signature_Verify_CBB_Library",
|
|
30
40
|
"boost",
|
|
31
|
-
"luajit"
|
|
41
|
+
"luajit",
|
|
42
|
+
"libyaml",
|
|
43
|
+
"opentelemetry",
|
|
44
|
+
"grpc",
|
|
45
|
+
"abseil",
|
|
46
|
+
"protobuf",
|
|
47
|
+
"re2",
|
|
48
|
+
"c_ares",
|
|
49
|
+
"opentelemetry-proto"
|
|
32
50
|
]
|
|
33
51
|
},
|
|
34
52
|
|
|
@@ -201,7 +219,8 @@
|
|
|
201
219
|
"license",
|
|
202
220
|
"remote_console",
|
|
203
221
|
"product_mgmt",
|
|
204
|
-
"usb_entry"
|
|
222
|
+
"usb_entry",
|
|
223
|
+
"observability"
|
|
205
224
|
],
|
|
206
225
|
"Libraries": [
|
|
207
226
|
"adaptive_lm",
|
|
@@ -761,7 +780,10 @@
|
|
|
761
780
|
"bmc.kepler.Inventory.Hardware",
|
|
762
781
|
"bmc.kepler.Systems.NetworkAdapter",
|
|
763
782
|
"bmc.kepler.Systems.NetworkPort",
|
|
764
|
-
"bmc.kepler.Systems.Processor.CPU"
|
|
783
|
+
"bmc.kepler.Systems.Processor.CPU",
|
|
784
|
+
"bmc.kepler.Managers.Syslog.Report",
|
|
785
|
+
"bmc.kepler.Systems.Storage.Drive",
|
|
786
|
+
"bmc.kepler.Managers.SOC"
|
|
765
787
|
]
|
|
766
788
|
}
|
|
767
789
|
},
|
bmcgo/functional/analysis.py
CHANGED
|
@@ -22,6 +22,7 @@ from bmcgo.bmcgo_config import BmcgoConfig
|
|
|
22
22
|
from bmcgo.component.analysis.analysis import AnalysisComp
|
|
23
23
|
from bmcgo.component.analysis.intf_validation import InterfaceValidation
|
|
24
24
|
from bmcgo.component.analysis.sr_validation import SrValidate
|
|
25
|
+
from bmcgo.utils.config import Config
|
|
25
26
|
|
|
26
27
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
|
27
28
|
|
|
@@ -79,9 +80,10 @@ class BmcgoCommand:
|
|
|
79
80
|
if self.board_name:
|
|
80
81
|
parsed.append("-b")
|
|
81
82
|
parsed.append(self.board_name)
|
|
82
|
-
|
|
83
|
+
config = Config(self.bconfig)
|
|
84
|
+
frame = Frame(self.bconfig, config)
|
|
83
85
|
frame.parse(parsed)
|
|
84
|
-
|
|
86
|
+
frame.run()
|
|
85
87
|
os.chdir(os.path.join(work_dir, misc.BUILD))
|
|
86
88
|
analysis_task = AnalysisComp(self.board_name, self.out_dir, self.lock_file, custom_sr_dir)
|
|
87
89
|
rc = analysis_task.run()
|
|
@@ -66,7 +66,8 @@ class TaskClass(Task):
|
|
|
66
66
|
self.rtos_datafs = f"{self.rtos_rootfs}/data"
|
|
67
67
|
# 镜像挂载点
|
|
68
68
|
self.mnt_datafs = f"{self.buildimg_dir}/mnt_datafs"
|
|
69
|
-
self.
|
|
69
|
+
self.run_command(f"rm -rf {self.mnt_datafs}", sudo=True)
|
|
70
|
+
self.run_command(f"mkdir {self.mnt_datafs}", sudo=True)
|
|
70
71
|
self.tools.check_path(self.rtos_rootfs)
|
|
71
72
|
|
|
72
73
|
def component_cust_conf(self):
|
|
@@ -482,21 +483,13 @@ class TaskClass(Task):
|
|
|
482
483
|
|
|
483
484
|
# ! 制作datafs img镜像,供work_buildpkg_ext4.py使用
|
|
484
485
|
datafs_mount_path = f"{self.config.build_path}/mnt_datafs/"
|
|
486
|
+
self.run_command(f"rm -rf {datafs_mount_path}", sudo=True)
|
|
485
487
|
self.run_command(f"mkdir -p {datafs_mount_path}", sudo=True)
|
|
486
488
|
|
|
487
|
-
# 等待dd任务创建self.datafs_img_path完成
|
|
488
|
-
while True:
|
|
489
|
-
if not self.datafs_img_process.is_alive():
|
|
490
|
-
if self.datafs_img_process.exitcode is not None and self.datafs_img_process.exitcode != 0:
|
|
491
|
-
raise errors.BmcGoException(f"创建镜像文件 {self.datafs_img_process.img_path} 失败")
|
|
492
|
-
break
|
|
493
|
-
time.sleep(0.1)
|
|
494
|
-
self.tools.create_image_and_mount_datafs(self.datafs_img_path, datafs_mount_path)
|
|
495
|
-
|
|
496
489
|
# 复制所有文件到挂载目录
|
|
497
490
|
self.run_command(f"cp -a {self.rtos_datafs}/. {datafs_mount_path}", ignore_error=True, sudo=True)
|
|
498
491
|
self.run_command(f"chown 0:0 {datafs_mount_path}", sudo=True)
|
|
499
|
-
self.tools.
|
|
492
|
+
self.tools.make_img(self.datafs_img_path, datafs_mount_path, "1024")
|
|
500
493
|
self.run_command(f"rm -rf {datafs_mount_path}", sudo=True)
|
|
501
494
|
|
|
502
495
|
subprocess.run(f"LD_PRELOAD= sudo LD_PRELOAD=${{LD_PRELOAD}} -E\
|
|
@@ -508,14 +501,6 @@ class TaskClass(Task):
|
|
|
508
501
|
def make_rootfs_img(self):
|
|
509
502
|
self.make_datafs_img()
|
|
510
503
|
|
|
511
|
-
# 等待dd任务创建self.rootfs_img_path完成
|
|
512
|
-
while True:
|
|
513
|
-
if not self.rootfs_img_process.is_alive():
|
|
514
|
-
if self.rootfs_img_process.exitcode is not None and self.rootfs_img_process.exitcode != 0:
|
|
515
|
-
raise errors.BmcGoException(f"创建镜像文件 {self.rootfs_img_process.img_path} 失败")
|
|
516
|
-
break
|
|
517
|
-
time.sleep(0.1)
|
|
518
|
-
self.tools.create_image_and_mount_datafs(self.rootfs_img_path, self.mnt_datafs)
|
|
519
504
|
self.component_cust_conf()
|
|
520
505
|
|
|
521
506
|
# 差异化处理装备定制化schema文件
|
|
@@ -546,7 +531,7 @@ class TaskClass(Task):
|
|
|
546
531
|
for cus in self.customization:
|
|
547
532
|
cus.rootfs_common(self.mnt_datafs)
|
|
548
533
|
self.chdir(self.config.work_out)
|
|
549
|
-
self.tools.
|
|
534
|
+
self.tools.make_img(self.rootfs_img_path, self.mnt_datafs, "376")
|
|
550
535
|
|
|
551
536
|
self.run_command(f"zerofree -v {self.rootfs_img_path}")
|
|
552
537
|
self.run_command(f"get_img_parma_area.sh {self.rootfs_img_path}")
|
|
@@ -582,14 +567,6 @@ class TaskClass(Task):
|
|
|
582
567
|
return
|
|
583
568
|
|
|
584
569
|
def run(self):
|
|
585
|
-
# 性能调优,异步进程dd创建image文件
|
|
586
|
-
self.rootfs_img_process = MakeZeroImageProcess(self, 96256, self.rootfs_img_path)
|
|
587
|
-
self.rootfs_img_process.start()
|
|
588
|
-
|
|
589
|
-
# 性能调优,异步进程dd创建image文件。262144*4096/1024/1024 = 1024MB等于data对应磁盘分区的大小(见config.cfg)
|
|
590
|
-
self.datafs_img_process = MakeZeroImageProcess(self, 262144, self.datafs_img_path)
|
|
591
|
-
self.datafs_img_process.start()
|
|
592
|
-
|
|
593
570
|
self.set_evn()
|
|
594
571
|
self.build_common_fs()
|
|
595
572
|
self.make_rootfs_img()
|
bmcgo/utils/tools.py
CHANGED
|
@@ -531,41 +531,14 @@ class Tools():
|
|
|
531
531
|
fp_w.close()
|
|
532
532
|
os.remove(f"{src_file}_bak")
|
|
533
533
|
|
|
534
|
-
def
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
# 直接挂载,挂载成功则直接退出
|
|
543
|
-
ret = self.run_command(f"mount -t ext4 {img_path} {mnt_datafs}", ignore_error=True, sudo=True)
|
|
544
|
-
if ret and ret.returncode == 0:
|
|
545
|
-
return
|
|
546
|
-
# 挂载设备进行16次尝试
|
|
547
|
-
for attempt_times in range(0, 64):
|
|
548
|
-
loop_id = attempt_times % 16
|
|
549
|
-
self.run_command(f"mknod -m 0660 /dev/loop{loop_id} b 7 {loop_id}", ignore_error=True, sudo=True)
|
|
550
|
-
ret = self.run_command(f"mount -o loop=/dev/loop{loop_id} -t ext4 {img_path} {mnt_datafs}",
|
|
551
|
-
ignore_error=True, sudo=True)
|
|
552
|
-
if ret is None or ret.returncode != 0:
|
|
553
|
-
# 创建设备,允许不成功,其他进程可能创建过相同的设备
|
|
554
|
-
self.log.info(f"挂载 {img_path} 失败, 尝试第 {loop_id} 次, 返回值为: {ret}")
|
|
555
|
-
else:
|
|
556
|
-
# 挂载成功退出
|
|
557
|
-
break
|
|
558
|
-
time.sleep(10)
|
|
559
|
-
else:
|
|
560
|
-
# 16次均失败,报错退出
|
|
561
|
-
self.run_command(f"umount {mnt_datafs}", ignore_error=True, sudo=True)
|
|
562
|
-
raise errors.BmcGoException(
|
|
563
|
-
f"挂载 {img_path} 失败, 请使用 df -hl 检查设备是否被占用"
|
|
564
|
-
)
|
|
565
|
-
|
|
566
|
-
def umount_datafs(self, mnt_datafs):
|
|
567
|
-
self.log.info(f"卸载 datafs, 目录: {mnt_datafs}")
|
|
568
|
-
self.run_command(f"umount {mnt_datafs}", ignore_error=True, sudo=True)
|
|
534
|
+
def make_img(self, img_path, mnt_datafs, size):
|
|
535
|
+
try:
|
|
536
|
+
self.run_command(f"/sbin/mkfs.ext4 -d {mnt_datafs} -r 1 -N 0 -m 5 -L \"rootfs\" -I 256 -O \
|
|
537
|
+
^64bit,^metadata_csum {img_path} \"{size}M\"", ignore_error=True, sudo=True)
|
|
538
|
+
user_group = f"{os.getuid()}:{os.getgid()}"
|
|
539
|
+
self.run_command(f"chown {user_group} {img_path}", sudo=True)
|
|
540
|
+
except Exception:
|
|
541
|
+
self.log.error(f"{img_path} 镜像制作失败")
|
|
569
542
|
|
|
570
543
|
def get_studio_path(self):
|
|
571
544
|
ret = self.run_command("whereis bmc_studio", sudo=True, ignore_error=True,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bmcgo/__init__.py,sha256=
|
|
1
|
+
bmcgo/__init__.py,sha256=kE6ioPVYZPryci_3gMlFQNsY9dMxrEJrRM3exClBkWk,563
|
|
2
2
|
bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
|
|
3
3
|
bmcgo/bmcgo_config.py,sha256=zPghH-W8vNK1bAc5PjfwnWzkHYT499PlGbhUWhPKT5U,10888
|
|
4
4
|
bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
|
|
@@ -155,10 +155,10 @@ bmcgo/codegen/lua/templates/new_app/test/unit/test.lua.mako,sha256=3UleW8XN8VEF7
|
|
|
155
155
|
bmcgo/codegen/lua/templates/new_app/user_conf/rootfs/etc/systemd/system/${project_name}.service.mako,sha256=b6wu4leCGtNlXJ_kmEjtJkQqIBSkYz6EfWViZGneCqY,400
|
|
156
156
|
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
|
|
157
157
|
bmcgo/codegen/lua/v1/script/gen_schema.py,sha256=LtSswrIqjgk3PuGSlzKSB5Cw5OeSafYkm7PdLQ7Mrao,11717
|
|
158
|
-
bmcgo/codegen/lua/v1/script/render_utils/client_lua.py,sha256=
|
|
158
|
+
bmcgo/codegen/lua/v1/script/render_utils/client_lua.py,sha256=0dKvOrd-fihPUZckr8_y275STe1rWppIWpYxHhtz-no,3773
|
|
159
159
|
bmcgo/codegen/lua/v1/script/render_utils/db_lua.py,sha256=59XfkKtUz8Rv73zcyIcQR25JN_2atS4hQq_4BcXRrqo,7948
|
|
160
160
|
bmcgo/codegen/lua/v1/script/render_utils/model_lua.py,sha256=NTB1RYxjqBypm5KeRKpJSige6HtaZl_EI9mHJ5HZ9Ss,19024
|
|
161
|
-
bmcgo/codegen/lua/v1/templates/apps/client.lua.mako,sha256=
|
|
161
|
+
bmcgo/codegen/lua/v1/templates/apps/client.lua.mako,sha256=6z71SedeK_bIfIi3PUMvqQSMKgVZ1K83qd3a3acNoB8,10701
|
|
162
162
|
bmcgo/codegen/lua/v1/templates/apps/db.lua.mako,sha256=zrlqjVN9k6G1i3OeW2OROxzsYyhNAY-wpDt_nva5jL4,2094
|
|
163
163
|
bmcgo/codegen/lua/v1/templates/apps/local_db.lua.mako,sha256=6Tp99mTF9tLTMz2K6kviaxG9Lwtt0d6cMYY7ZGgMFCE,6460
|
|
164
164
|
bmcgo/codegen/lua/v1/templates/apps/message.lua.mako,sha256=-AUAwlgVIaNN7fiReXqDXX5Icq88i0SAar5XHlCrXQU,1039
|
|
@@ -177,7 +177,7 @@ bmcgo/component/test.py,sha256=kC8QsM3PypcDDy9VhBNQ4iutyBbPztMtlFHGY8a82FE,43332
|
|
|
177
177
|
bmcgo/component/analysis/analysis.py,sha256=AzOztLmmt4URooNe0wKgF8CfWgrk3-1RMaH5wgoTJkg,8544
|
|
178
178
|
bmcgo/component/analysis/build_deps.py,sha256=cyQh5D3R1syQfMJcNxEIKKSJGanPMNRFPGlJRitDAa0,7324
|
|
179
179
|
bmcgo/component/analysis/data_deps.py,sha256=UkuqMhJseZIXMZWC2cJ4csko7rENPlpXJUU0eRWVZNM,16148
|
|
180
|
-
bmcgo/component/analysis/dep-rules.json,sha256=
|
|
180
|
+
bmcgo/component/analysis/dep-rules.json,sha256=OHAka6bWjl4l27jAOsv4IlnV-lmsCfp2Bcsuxxl0Qwo,34888
|
|
181
181
|
bmcgo/component/analysis/dep_node.py,sha256=DSB30uim1Qrjs0zuphz0JXetP0ECBC7rzCElFNWQpwM,4598
|
|
182
182
|
bmcgo/component/analysis/intf_deps.py,sha256=IlcPixdaBpXpb6U4M-I1hRRGHCg5SCUg07V6kAosacE,7382
|
|
183
183
|
bmcgo/component/analysis/intf_validation.py,sha256=zp_LiiJYYP8Y0lsFISX1KLY172q-qEOz0nFuQ--uPFQ,11131
|
|
@@ -190,7 +190,7 @@ bmcgo/component/coverage/incremental_cov.py,sha256=tkeGpWfXXkipeDTEB9bS_p2S60rL_
|
|
|
190
190
|
bmcgo/component/template/conanbase.py.mako,sha256=MMZezCl5oFucRraOJt1WjmPL2S7wa4Hzfc7yDfTkW7Q,10949
|
|
191
191
|
bmcgo/component/template/conanfile.deploy.py.mako,sha256=zpxluBjUFmJHfFrnBknxZ3cv3cxcqzJuGh2eN0uMXZA,889
|
|
192
192
|
bmcgo/functional/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
193
|
-
bmcgo/functional/analysis.py,sha256=
|
|
193
|
+
bmcgo/functional/analysis.py,sha256=atAKrYsktNSWOtlPOMleGRHLFS_ucX0_cMJw7_LtO7M,3947
|
|
194
194
|
bmcgo/functional/bmc_studio_action.py,sha256=Gg96UB8QtnhsaqSdMhXuS9fddzAFPhR6UYCpto9UOYA,3605
|
|
195
195
|
bmcgo/functional/check.py,sha256=LWoDAtEB2p65FemLEoNGz33ldtkbcJlc-uz8hwJl89U,8183
|
|
196
196
|
bmcgo/functional/conan_index_build.py,sha256=cYpv83DFnsbUJri_dKyThLo7-SDRQ4253P4Nud-HYFY,9074
|
|
@@ -221,7 +221,7 @@ bmcgo/tasks/download_buildtools_hm.py,sha256=f4UxStARc8Z8DnT_5O6ONajQ7P0sKyJ8bri
|
|
|
221
221
|
bmcgo/tasks/misc.py,sha256=GK_bSDLGZW0FxywB2ICG1iIEz2y2QoCb1YQQk8SYOIA,711
|
|
222
222
|
bmcgo/tasks/task.py,sha256=n7EhquD3FQeT8LHk0tREKOG9t1BcbMge_TY6ekGFydk,17064
|
|
223
223
|
bmcgo/tasks/task_build_conan.py,sha256=nQt4VyK4QHh2u4JbM8kfK9WBVIMGKI18S2NPg9orlvQ,32962
|
|
224
|
-
bmcgo/tasks/task_build_rootfs_img.py,sha256=
|
|
224
|
+
bmcgo/tasks/task_build_rootfs_img.py,sha256=JKEvldJnLWu2IdVSntuVowocQwdVtBQUpxzhplYauPI,29209
|
|
225
225
|
bmcgo/tasks/task_build_wbd_up.py,sha256=X9-0Qqad-s3mGfJBMeBQvfZ99KlWcgaMluDr_zv6Z-o,3122
|
|
226
226
|
bmcgo/tasks/task_buildgppbin.py,sha256=Xjfw6j8OsyS_XRiOt4vqIK1rDQ4sNKG__eurDu-M9bo,6341
|
|
227
227
|
bmcgo/tasks/task_buildhpm_ext4.py,sha256=DBZnmU_eb14J0CW_wVoCc9VKnssFF1vXmRhLJQ6kR28,3482
|
|
@@ -244,7 +244,7 @@ bmcgo/utils/install_manager.py,sha256=XMZUuIHm7_DWRdLV4dAevsyamQ6rt8lb_7OqGWzNBC
|
|
|
244
244
|
bmcgo/utils/json_validator.py,sha256=_k5wU78wfYGrzvSDaqOEtT4otgKUjquVhZNpVf2PW_c,7524
|
|
245
245
|
bmcgo/utils/mapping_config_patch.py,sha256=_gKfZnrvsLPgHn1yXhEJRVTAeuGpeGD9T-Pqyw5Ydys,16827
|
|
246
246
|
bmcgo/utils/perf_analysis.py,sha256=fh6lV9AAKVhpPkGPwAJ8EWfGfUoHjqGYQxrvc32Xiac,4767
|
|
247
|
-
bmcgo/utils/tools.py,sha256=
|
|
247
|
+
bmcgo/utils/tools.py,sha256=athCcqcHgtIZY23GxziWdFjgjEhjGqTwbnezXjmg94Y,27421
|
|
248
248
|
bmcgo/utils/installations/README.md,sha256=hKXnFYmeHEuROFMFE-vzlGLSHg71bei5ZYwyYZphWNk,2
|
|
249
249
|
bmcgo/utils/installations/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
250
250
|
bmcgo/utils/installations/base_installer.py,sha256=3UZiKWoa41ygRbLD3QsE2FTp-VFp79V0I53QLRIf4E8,5902
|
|
@@ -254,8 +254,8 @@ bmcgo/utils/installations/version_util.py,sha256=dOwvLZ7iOmnzSeyD6_pRm7NS7I13Um5
|
|
|
254
254
|
bmcgo/utils/installations/install_plans/bingo.yml,sha256=Zw1HnAyNJdEwkE3fnd-_GCe9bwv1m6bmMlaQTJXaFa8,210
|
|
255
255
|
bmcgo/utils/installations/installers/apt_installer.py,sha256=nPaCb4cobSi9InN_aHsEPtQ0k4FgsCUWE5_VgBPvcRE,3769
|
|
256
256
|
bmcgo/utils/installations/installers/pip_installer.py,sha256=dDdios1EQ7fzt90r02pZeoM3jCmjslLzkSvzd2hgRVM,3241
|
|
257
|
-
openubmc_bingo-0.5.
|
|
258
|
-
openubmc_bingo-0.5.
|
|
259
|
-
openubmc_bingo-0.5.
|
|
260
|
-
openubmc_bingo-0.5.
|
|
261
|
-
openubmc_bingo-0.5.
|
|
257
|
+
openubmc_bingo-0.5.270.dist-info/METADATA,sha256=eDjQojLo2syKSGeBiCaBhU_hgbwDhw9gUJPclCulesk,925
|
|
258
|
+
openubmc_bingo-0.5.270.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
259
|
+
openubmc_bingo-0.5.270.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
|
|
260
|
+
openubmc_bingo-0.5.270.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
|
|
261
|
+
openubmc_bingo-0.5.270.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|