blob: 3f99b1baa88100f5ce6a4e68a7378f6a92c5c074 [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: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/fxfs",
args: [ "component" ],
lifecycle: { stop_event: "notify" },
},
capabilities: [
{
directory: "root",
rights: [ "rw*" ],
path: "/root",
},
{
protocol: [
"fuchsia.fs.Admin",
"fuchsia.fs.startup.Startup",
],
},
],
expose: [
{
directory: "root",
from: "self",
},
{
protocol: [
"fuchsia.fs.Admin",
"fuchsia.fs.startup.Startup",
],
from: "self",
},
],
}