Files
scrutiny/vendor/github.com/jaypipes/ghw/baseboard_linux.go
T
2020-08-21 06:31:48 +00:00

16 lines
425 B
Go

// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
//
package ghw
func (ctx *context) baseboardFillInfo(info *BaseboardInfo) error {
info.AssetTag = ctx.dmiItem("board_asset_tag")
info.SerialNumber = ctx.dmiItem("board_serial")
info.Vendor = ctx.dmiItem("board_vendor")
info.Version = ctx.dmiItem("board_version")
return nil
}