mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 01:41:26 +02:00
18 lines
399 B
Python
18 lines
399 B
Python
BUNDLES = [
|
|
'//providers/p4runtime/packet:onos-providers-p4runtime-packet',
|
|
]
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.p4runtime',
|
|
title = 'P4Runtime Provider',
|
|
category = 'Provider',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'P4Runtime southbound providers.',
|
|
required_apps = [
|
|
'org.onosproject.protocols.p4runtime',
|
|
]
|
|
)
|
|
|
|
|