mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-25 11:11:47 +01:00
- Create router bridge and pactch port to integration bridge for gateway node - Refactored to listen map event for node add/update - Added CLIs Change-Id: Id653f2a2c01d94036f77e6ce1b1230111f3dbbb1
21 lines
557 B
Python
21 lines
557 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//protocols/ovsdb/api:onos-protocols-ovsdb-api',
|
|
'//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'OpenStack Node Bootstrap App',
|
|
category = 'Utility',
|
|
url = 'http://onosproject.org',
|
|
description = 'SONA Openstack Node Bootstrap Application.',
|
|
required_app = [ 'org.onosproject.ovsdb-base' ],
|
|
)
|