blob: 623239a1c4b9d328b5a56855632d906cdec95787 [file] [log] [blame]
// Copyright 2021 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/hwinfo",
},
capabilities: [
{
protocol: [
"fuchsia.hwinfo.Board",
"fuchsia.hwinfo.Device",
"fuchsia.hwinfo.Product",
],
},
],
use: [
{
protocol: "fuchsia.factory.MiscFactoryStoreProvider",
availability: "optional",
},
{
directory: "config-data",
rights: [ "r*" ],
path: "/config/data",
},
],
expose: [
{
protocol: [
"fuchsia.hwinfo.Board",
"fuchsia.hwinfo.Device",
"fuchsia.hwinfo.Product",
],
from: "self",
},
],
config: {
product_name: {
type: "string",
max_size: 40,
},
product_model: {
type: "string",
max_size: 40,
},
product_manufacturer: {
type: "string",
max_size: 40,
},
},
}