1// Copyright 2022 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7package chromiumos.test.lab.api; 8 9option go_package = "go.chromium.org/chromiumos/config/go/test/lab/api"; 10 11// CBI (CROS Board Info) contains hardware identifiers stored in 12// EEPROM on the DUT (go/cros-board-info, go/cbi-auto-recovery-dd) 13message Cbi { 14 // All CBI contents stored on the DUT (Up to 256 bytes represented 15 // in hex format "0x43 0x42 0x49 00 0xff...") as read directly from the DUT 16 // using the `ectool i2cxfer` utility. 17 string raw_contents = 1; 18} 19