Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
@@ -0,0 +1,30 @@
{
"system_board": [
{"instance": 1, "name": "/"},
{"instance": 28, "name": "/i2cool_0"},
{"instance": 29, "name": "/i2cool_1"},
{"instance": 30, "name": "/i2cool_2"}
],
"system_internal_expansion_board": [
{"instance": 1, "name": "/"}
],
"power_system_board": [
{"instance": 1, "name": "/"}
],
"add_in_card": [
{"instance": 0, "name": "/PE0"},
{"instance": 1, "name": "/PE1"}
],
"fan": [
{"instance": 0, "name": "/fan0"},
{"instance": 1, "name": "/fan1"},
{"instance": 2, "name": "/fb_fan0"},
{"instance": 3, "name": "/fb_fan1"},
{"instance": 4, "name": "/fb_fan2"}
],
"cooling_unit": [
{"instance": 0, "name": "/ZONE0"},
{"instance": 1, "name": "/ZONE1"},
{"instance": 2, "name": "/ZONE2"}
]
}
@@ -0,0 +1,16 @@
SUMMARY = "GBS IPMI Entity association mapping."
PR = "r1"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
SRC_URI += "file://entity_association_map.json"
FILES:${PN} = " \
${datadir}/ipmi-entity-association/entity_association_map.json \
"
do_install() {
install -d ${D}${datadir}/ipmi-entity-association
install -m 0644 -D ${WORKDIR}/entity_association_map.json \
${D}${datadir}/ipmi-entity-association/entity_association_map.json
}