blob: 18187be39abe67603590af51fa83cc63a54495ba [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: [
// Enable system logging
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/fake_factory_store_provider",
args: [
"--provider=misc",
"--config",
"/config/data/fuchsia.factory.MiscFactoryStoreProvider_retail.config",
],
},
capabilities: [
{
protocol: [ "fuchsia.factory.MiscFactoryStoreProvider" ],
},
],
use: [
{
directory: "config-data",
rights: [ "r*" ],
path: "/config/data",
},
],
expose: [
{
protocol: "fuchsia.factory.MiscFactoryStoreProvider",
from: "self",
},
],
}