blob: 032a0d0a192b66cd6b1c176209ce85d0e93b8689 [file] [log] [blame]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
include: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/gumshoe",
},
use: [
{
protocol: [
// To retrieve Board/Device/Product info.
"fuchsia.hwinfo.Board",
"fuchsia.hwinfo.Device",
"fuchsia.hwinfo.Product",
// To open and accept sockets for our Web-based UI.
"fuchsia.posix.socket.Provider",
],
},
{
// Grants access to block devices under the provided path.
directory: "dev-class-block",
from: "parent",
rights: [ "r*" ],
path: "/gumshoe-dev-class-block",
},
],
}