3.0
0%
0 Open
0 Closed
Updated 2024年11月11日 13:28:04 +01:00
This is going to be a new library API making it much easier to write your own frugen-like tools or implement various daemons working with FRU data, like OpenBMC's ipmi-fru-parser. The new API will completely abstract the user from the encoded form of FRU and will operate on decoded data based structures only.
It will be as easy to modify a FRU file as:
fru_t *fru = fru_loadfile(NULL, "filename.fru", FRU_NOFLAGS);
fru_setfield(&fru->board.pname, FRU_FT_AUTO, "New model name");
fru_savefile("filename.fru");
v2.1
100%
0 Open
1 Closed
Updated 2024年11月13日 09:23:34 +01:00
-
A stub milestone to include all fixes and minor improvements to v2.0 before v3.0 is released