blob: 248b3bb3b86c1a1af4a52a6f29b20a14107f87ea [file] [log] [blame] [edit]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package imageloader;
option go_package = "go.chromium.org/chromiumos/system_api/imageloader_proto";
// This is the message that is passed into load a DLC.
message LoadDlcRequest {
// The unique ID of the DLC.
string id = 1;
// The path of the DLC image.
string path = 2;
// The package of the DLC. Empty will default to `package`.
string package = 3;
}