mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 18:32:28 +02:00
- Minimal refactoring of P4 programs - Removed symlinks to BMv2 JSON/P4Info - Bumped p4c commit (which fixes known parser bug) - Renamed "default" pipeconf to "basic" (ONOS-6818) Change-Id: I319f8b142ab22dba9b15457e28cd62d17f78a423
28 lines
690 B
Python
28 lines
690 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:minimal-json',
|
|
'//apps/pi-demo/common:onos-apps-pi-demo-common',
|
|
'//pipelines/basic:onos-pipelines-basic',
|
|
]
|
|
|
|
osgi_jar (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
BUNDLES = [
|
|
'//apps/pi-demo/common:onos-apps-pi-demo-common',
|
|
'//apps/pi-demo/ecmp:onos-apps-pi-demo-ecmp',
|
|
]
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.pi-ecmp',
|
|
title = 'PI Demo ECMP Fabric',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
description = 'Provides ECMP support for a 2-stage clos fabric topology of PI-enabled devices',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
'org.onosproject.pipelines.basic'
|
|
]
|
|
)
|