• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2023 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
7option go_package = "go.chromium.org/chromiumos/config/go/api/software";
8
9package chromiumos.config.api.software;
10
11// Firmware information for the device
12// For more details, see:
13// https://source.chromium.org/chromiumos/chromiumos/codesearch/+/HEAD:src/platform2/chromeos-config/README.md
14message FirmwareInfo {
15  // Altfw is functional on the DUT.
16  bool has_alt_firmware = 1;
17  // Firmware is setting up the initial splash screen.
18  bool has_splash_screen = 2;
19};
20