blob: b22829b032e389a0ff3d98aafe3119f1093f2b63 [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: [
'syslog/client.shard.cml',
],
program: {
runner: 'driver',
binary: 'lib/libcontroller_driver.so',
bind: 'meta/bind/controller-driver.bindbc',
// Identifies the device categories, for compatibility tests. This
// example driver uses the 'misc' category; real drivers should
// select a more specific category.
device_categories: [
{ category: 'misc', subcategory: '' },
],
},
capabilities: [
{ service: 'fuchsia.driver.compat.Service' },
],
expose: [
{
service: 'fuchsia.driver.compat.Service',
from: 'self',
},
],
}