blob: 6f701e3505646b945e8d5e6390e0ae6035a297a5 [file] [log] [blame]
// Copyright 2025 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/kernel-args-forwarder",
},
capabilities: [
{
dictionary: "boot_args",
path: "/svc/fuchsia.component.sandbox.DictionaryRouter",
},
],
use: [
{
protocol: "fuchsia.boot.Arguments",
from: "parent",
},
{
protocol: [ "fuchsia.component.sandbox.CapabilityStore" ],
from: "framework",
},
],
expose: [
{
dictionary: "boot_args",
from: "self",
},
],
}