|  | // 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. | 
|  |  | 
|  | // This file was generated by the `fx create` command. The template | 
|  | // is located at `//tools/create/templates/component-default/meta/{{snake_case PROJECT_NAME}}.cml.tmpl-rust`. | 
|  | // If you find something broken, we are eager to review fixes. | 
|  |  | 
|  | // fastboot-tcp component manifest. | 
|  | // For information on manifest format and features, | 
|  | // see https://fuchsia.dev/fuchsia-src/concepts/components/component_manifests. | 
|  | { | 
|  | include: [ | 
|  | "inspect/client.shard.cml", | 
|  | "syslog/client.shard.cml", | 
|  | ], | 
|  |  | 
|  | // Information about the program to run. | 
|  | program: { | 
|  | // Use the built-in ELF runner. | 
|  | runner: "elf", | 
|  |  | 
|  | // The binary to run for this component. | 
|  | binary: "bin/fastboot-tcp", | 
|  | }, | 
|  |  | 
|  | // Capabilities used by this component. | 
|  | use: [ | 
|  | // List your component's dependencies here, ex: | 
|  | { | 
|  | protocol: [ | 
|  | "fuchsia.buildinfo.Provider", | 
|  | "fuchsia.fshost.Admin", | 
|  | "fuchsia.hardware.power.statecontrol.Admin", | 
|  | "fuchsia.paver.Paver", | 
|  | "fuchsia.posix.socket.Provider", | 
|  | ], | 
|  | }, | 
|  | { | 
|  | protocol: [ "fuchsia.fshost.Recovery" ], | 
|  | availability: "optional", | 
|  | }, | 
|  | { | 
|  | directory: "dev-class-block", | 
|  | rights: [ "r*" ], | 
|  | path: "/dev/class/block", | 
|  | }, | 
|  | ], | 
|  | } |