├── .gitignore ├── .gitreview ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── Jenkinsfile ├── Jenkinsfile-build ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── VERSION ├── agent ├── Makefile.in ├── common │ ├── Queue.h │ ├── core.h │ ├── main.cc │ ├── server.cc │ ├── server.h │ └── state.h ├── config.h.in ├── configure ├── configure.ac ├── device │ ├── asfvolt16 │ │ ├── mkdebian │ │ │ ├── build_asfvolt16_deb.sh │ │ │ └── debian │ │ │ │ ├── asfvolt16.install │ │ │ │ ├── asfvolt16.postinst │ │ │ │ ├── asfvolt16.postrm │ │ │ │ ├── asfvolt16.preinst │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── logrotate.d │ │ │ │ └── openolt │ │ │ │ └── rules │ │ ├── vendor.cc │ │ └── vendor.h │ ├── asgvolt64 │ │ ├── mkdebian │ │ │ ├── build_asgvolt64_deb.sh │ │ │ └── debian │ │ │ │ ├── .debhelper │ │ │ │ └── generated │ │ │ │ │ └── asgvolt64 │ │ │ │ │ └── triggers │ │ │ │ ├── asgvolt64.install │ │ │ │ ├── asgvolt64.postinst │ │ │ │ ├── asgvolt64.postrm │ │ │ │ ├── asgvolt64.preinst │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── logrotate.d │ │ │ │ └── openolt │ │ │ │ └── rules │ │ ├── vendor.cc │ │ └── vendor.h │ ├── device.cc │ ├── device.h │ ├── generic │ │ ├── vendor.cc │ │ └── vendor.h │ ├── rlt-1600g-w │ │ ├── mkdebian │ │ │ ├── build_rlt-1600g-w_deb.sh │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── logrotate.d │ │ │ │ └── openolt │ │ │ │ ├── rlt-1600g-w.install │ │ │ │ ├── rlt-1600g-w.postinst │ │ │ │ ├── rlt-1600g-w.postrm │ │ │ │ ├── rlt-1600g-w.preinst │ │ │ │ └── rules │ │ ├── update_kernel_options.sh │ │ ├── vendor.cc │ │ └── vendor.h │ ├── rlt-1600x-w │ │ ├── mkdebian │ │ │ ├── build_rlt-1600x-w_deb.sh │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── logrotate.d │ │ │ │ └── openolt │ │ │ │ ├── rlt-1600x-w.install │ │ │ │ ├── rlt-1600x-w.postinst │ │ │ │ ├── rlt-1600x-w.postrm │ │ │ │ ├── rlt-1600x-w.preinst │ │ │ │ └── rules │ │ ├── update_kernel_options.sh │ │ ├── vendor.cc │ │ └── vendor.h │ ├── rlt-3200g-w │ │ ├── mkdebian │ │ │ ├── build_rlt-3200g-w_deb.sh │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── logrotate.d │ │ │ │ └── openolt │ │ │ │ ├── rlt-3200g-w.install │ │ │ │ ├── rlt-3200g-w.postinst │ │ │ │ ├── rlt-3200g-w.postrm │ │ │ │ ├── rlt-3200g-w.preinst │ │ │ │ └── rules │ │ ├── update_kernel_options.sh │ │ ├── vendor.cc │ │ └── vendor.h │ ├── sda3016ss │ │ ├── mkdebian │ │ │ ├── build_sda3016ss_deb.sh │ │ │ ├── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── files │ │ │ │ ├── rules │ │ │ │ ├── sda3016ss.install │ │ │ │ ├── sda3016ss.postinst │ │ │ │ ├── sda3016ss.postrm │ │ │ │ └── sda3016ss.preinst │ │ │ └── logrotate.d │ │ │ │ └── openolt │ │ ├── vendor.cc │ │ └── vendor.h │ ├── sim │ │ ├── vendor.cc │ │ └── vendor.h │ ├── tlabvolt2 │ │ ├── vendor.cc │ │ └── vendor.h │ └── tlabvolt8 │ │ ├── vendor.cc │ │ └── vendor.h ├── download │ ├── Makefile.onl │ ├── build-onl.sh │ ├── debian_stretch_mirror.patch │ ├── disable-certificate-validation-v72b95a7.patch │ └── disable-certificate-validation-vf0bcb230.patch ├── inband │ ├── config │ │ └── inband.config │ ├── patch │ │ └── inband-f0bcb230.patch │ └── scripts │ │ ├── fetch_olt_sw_hw_details.py │ │ ├── start_inband_oltservices.sh │ │ └── validate_onl_installation.sh ├── scripts │ ├── init.d │ │ ├── dev_mgmt_daemon │ │ └── openolt │ └── watchdog │ │ ├── openolt_dev_mgmt_daemon_process_watchdog │ │ └── watchdog.config ├── src │ ├── core_api_handler.cc │ ├── core_data.cc │ ├── core_data.h │ ├── core_utils.cc │ ├── core_utils.h │ ├── error_format.cc │ ├── error_format.h │ ├── indications.cc │ ├── indications.h │ ├── stats_collection.cc │ ├── stats_collection.h │ ├── translation.cc │ ├── translation.h │ ├── trx_eeprom_reader.cc │ └── trx_eeprom_reader.h └── test │ ├── 41-0050 │ ├── NOTE.md │ └── eeprom │ ├── 47-0050 │ ├── NOTE.md │ └── sfp_eeprom │ ├── Makefile │ ├── README.md │ ├── inc │ ├── bal_mocker.h │ ├── bal_stub.h │ ├── bal_version.h │ ├── bcm_api_cli.h │ ├── bcmcli.h │ ├── bcmcli_session.h │ ├── bcmolt_api_model_api_structs_test.h │ ├── bcmolt_api_topology.h │ ├── bcmolt_conn_mgr.h │ ├── bcmos_common_test.h │ ├── bcmos_system_test.h │ └── test_stub.h │ ├── keystore-test │ ├── root.crt │ ├── server.crt │ └── server.key │ └── src │ ├── bal_mocker.cc │ ├── bal_stub.cc │ ├── main_test.cc │ └── test_core.cc ├── logConf └── td-agent.conf ├── olt-sw-upgrade ├── README.md ├── change_labels.sh ├── install_onl.sh └── test │ └── ansible │ ├── inventory │ └── hosts │ ├── roles │ └── upgrade │ │ └── tasks │ │ └── main.yml │ └── upgrade_olt.yml └── protos ├── Makefile └── generate.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/.gitreview -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/Jenkinsfile-build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.10.2 -------------------------------------------------------------------------------- /agent/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/Makefile.in -------------------------------------------------------------------------------- /agent/common/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/Queue.h -------------------------------------------------------------------------------- /agent/common/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/core.h -------------------------------------------------------------------------------- /agent/common/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/main.cc -------------------------------------------------------------------------------- /agent/common/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/server.cc -------------------------------------------------------------------------------- /agent/common/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/server.h -------------------------------------------------------------------------------- /agent/common/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/common/state.h -------------------------------------------------------------------------------- /agent/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/config.h.in -------------------------------------------------------------------------------- /agent/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/configure -------------------------------------------------------------------------------- /agent/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/configure.ac -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/build_asfvolt16_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/build_asfvolt16_deb.sh -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/asfvolt16.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/asfvolt16.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/asfvolt16.postinst -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/asfvolt16.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/asfvolt16.postrm -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/asfvolt16.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/asfvolt16.preinst -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2003-2016 2 | -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/files: -------------------------------------------------------------------------------- 1 | asfvolt16_3.10.2.2+edgecore-V202111040101_amd64.deb misc optional 2 | -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/asfvolt16/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/asfvolt16/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/vendor.cc -------------------------------------------------------------------------------- /agent/device/asfvolt16/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asfvolt16/vendor.h -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/build_asgvolt64_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/build_asgvolt64_deb.sh -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/.debhelper/generated/asgvolt64/triggers: -------------------------------------------------------------------------------- 1 | # Triggers added by dh_makeshlibs 2 | activate-noawait ldconfig 3 | -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/asgvolt64.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/asgvolt64.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/asgvolt64.postinst -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/asgvolt64.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/asgvolt64.postrm -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/asgvolt64.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/asgvolt64.preinst -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2003-2016 2 | -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/files: -------------------------------------------------------------------------------- 1 | asgvolt64_3.10.2.2+edgecore-V202111040101_amd64.deb misc optional 2 | -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/asgvolt64/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/asgvolt64/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/vendor.cc -------------------------------------------------------------------------------- /agent/device/asgvolt64/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/asgvolt64/vendor.h -------------------------------------------------------------------------------- /agent/device/device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/device.cc -------------------------------------------------------------------------------- /agent/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/device.h -------------------------------------------------------------------------------- /agent/device/generic/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/generic/vendor.cc -------------------------------------------------------------------------------- /agent/device/generic/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/generic/vendor.h -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/build_rlt-1600g-w_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/build_rlt-1600g-w_deb.sh -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2003-2016 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/files -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.postinst -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.postrm -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/rlt-1600g-w.preinst -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/update_kernel_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/update_kernel_options.sh -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/vendor.cc -------------------------------------------------------------------------------- /agent/device/rlt-1600g-w/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600g-w/vendor.h -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/build_rlt-1600x-w_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/build_rlt-1600x-w_deb.sh -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2003-2016 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/files -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.postinst -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.postrm -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/rlt-1600x-w.preinst -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/update_kernel_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/update_kernel_options.sh -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/vendor.cc -------------------------------------------------------------------------------- /agent/device/rlt-1600x-w/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-1600x-w/vendor.h -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/build_rlt-3200g-w_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/build_rlt-3200g-w_deb.sh -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2003-2016 2 | -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/files -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.postinst -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.postrm -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/rlt-3200g-w.preinst -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/update_kernel_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/update_kernel_options.sh -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/vendor.cc -------------------------------------------------------------------------------- /agent/device/rlt-3200g-w/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/rlt-3200g-w/vendor.h -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/build_sda3016ss_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/build_sda3016ss_deb.sh -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/changelog -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/control -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/copyright: -------------------------------------------------------------------------------- 1 | (C) Copyright Broadcom Corporation 2016-2020 2 | -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/files -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/rules -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/sda3016ss.install: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/sda3016ss.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/sda3016ss.postinst -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/sda3016ss.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/sda3016ss.postrm -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/debian/sda3016ss.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/debian/sda3016ss.preinst -------------------------------------------------------------------------------- /agent/device/sda3016ss/mkdebian/logrotate.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/mkdebian/logrotate.d/openolt -------------------------------------------------------------------------------- /agent/device/sda3016ss/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/vendor.cc -------------------------------------------------------------------------------- /agent/device/sda3016ss/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sda3016ss/vendor.h -------------------------------------------------------------------------------- /agent/device/sim/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sim/vendor.cc -------------------------------------------------------------------------------- /agent/device/sim/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/sim/vendor.h -------------------------------------------------------------------------------- /agent/device/tlabvolt2/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/tlabvolt2/vendor.cc -------------------------------------------------------------------------------- /agent/device/tlabvolt2/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/tlabvolt2/vendor.h -------------------------------------------------------------------------------- /agent/device/tlabvolt8/vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/tlabvolt8/vendor.cc -------------------------------------------------------------------------------- /agent/device/tlabvolt8/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/device/tlabvolt8/vendor.h -------------------------------------------------------------------------------- /agent/download/Makefile.onl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/download/Makefile.onl -------------------------------------------------------------------------------- /agent/download/build-onl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/download/build-onl.sh -------------------------------------------------------------------------------- /agent/download/debian_stretch_mirror.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/download/debian_stretch_mirror.patch -------------------------------------------------------------------------------- /agent/download/disable-certificate-validation-v72b95a7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/download/disable-certificate-validation-v72b95a7.patch -------------------------------------------------------------------------------- /agent/download/disable-certificate-validation-vf0bcb230.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/download/disable-certificate-validation-vf0bcb230.patch -------------------------------------------------------------------------------- /agent/inband/config/inband.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/inband/config/inband.config -------------------------------------------------------------------------------- /agent/inband/patch/inband-f0bcb230.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/inband/patch/inband-f0bcb230.patch -------------------------------------------------------------------------------- /agent/inband/scripts/fetch_olt_sw_hw_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/inband/scripts/fetch_olt_sw_hw_details.py -------------------------------------------------------------------------------- /agent/inband/scripts/start_inband_oltservices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/inband/scripts/start_inband_oltservices.sh -------------------------------------------------------------------------------- /agent/inband/scripts/validate_onl_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/inband/scripts/validate_onl_installation.sh -------------------------------------------------------------------------------- /agent/scripts/init.d/dev_mgmt_daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/scripts/init.d/dev_mgmt_daemon -------------------------------------------------------------------------------- /agent/scripts/init.d/openolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/scripts/init.d/openolt -------------------------------------------------------------------------------- /agent/scripts/watchdog/openolt_dev_mgmt_daemon_process_watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/scripts/watchdog/openolt_dev_mgmt_daemon_process_watchdog -------------------------------------------------------------------------------- /agent/scripts/watchdog/watchdog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/scripts/watchdog/watchdog.config -------------------------------------------------------------------------------- /agent/src/core_api_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/core_api_handler.cc -------------------------------------------------------------------------------- /agent/src/core_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/core_data.cc -------------------------------------------------------------------------------- /agent/src/core_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/core_data.h -------------------------------------------------------------------------------- /agent/src/core_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/core_utils.cc -------------------------------------------------------------------------------- /agent/src/core_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/core_utils.h -------------------------------------------------------------------------------- /agent/src/error_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/error_format.cc -------------------------------------------------------------------------------- /agent/src/error_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/error_format.h -------------------------------------------------------------------------------- /agent/src/indications.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/indications.cc -------------------------------------------------------------------------------- /agent/src/indications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/indications.h -------------------------------------------------------------------------------- /agent/src/stats_collection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/stats_collection.cc -------------------------------------------------------------------------------- /agent/src/stats_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/stats_collection.h -------------------------------------------------------------------------------- /agent/src/translation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/translation.cc -------------------------------------------------------------------------------- /agent/src/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/translation.h -------------------------------------------------------------------------------- /agent/src/trx_eeprom_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/trx_eeprom_reader.cc -------------------------------------------------------------------------------- /agent/src/trx_eeprom_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/src/trx_eeprom_reader.h -------------------------------------------------------------------------------- /agent/test/41-0050/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/41-0050/NOTE.md -------------------------------------------------------------------------------- /agent/test/41-0050/eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/41-0050/eeprom -------------------------------------------------------------------------------- /agent/test/47-0050/NOTE.md: -------------------------------------------------------------------------------- 1 | # Binary file format 2 | Confirms to SFF-8436 specification for XFP modules. 3 | -------------------------------------------------------------------------------- /agent/test/47-0050/sfp_eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/47-0050/sfp_eeprom -------------------------------------------------------------------------------- /agent/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/Makefile -------------------------------------------------------------------------------- /agent/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/README.md -------------------------------------------------------------------------------- /agent/test/inc/bal_mocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bal_mocker.h -------------------------------------------------------------------------------- /agent/test/inc/bal_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bal_stub.h -------------------------------------------------------------------------------- /agent/test/inc/bal_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bal_version.h -------------------------------------------------------------------------------- /agent/test/inc/bcm_api_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcm_api_cli.h -------------------------------------------------------------------------------- /agent/test/inc/bcmcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmcli.h -------------------------------------------------------------------------------- /agent/test/inc/bcmcli_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmcli_session.h -------------------------------------------------------------------------------- /agent/test/inc/bcmolt_api_model_api_structs_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmolt_api_model_api_structs_test.h -------------------------------------------------------------------------------- /agent/test/inc/bcmolt_api_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmolt_api_topology.h -------------------------------------------------------------------------------- /agent/test/inc/bcmolt_conn_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmolt_conn_mgr.h -------------------------------------------------------------------------------- /agent/test/inc/bcmos_common_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmos_common_test.h -------------------------------------------------------------------------------- /agent/test/inc/bcmos_system_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/bcmos_system_test.h -------------------------------------------------------------------------------- /agent/test/inc/test_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/inc/test_stub.h -------------------------------------------------------------------------------- /agent/test/keystore-test/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/keystore-test/root.crt -------------------------------------------------------------------------------- /agent/test/keystore-test/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/keystore-test/server.crt -------------------------------------------------------------------------------- /agent/test/keystore-test/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/keystore-test/server.key -------------------------------------------------------------------------------- /agent/test/src/bal_mocker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/src/bal_mocker.cc -------------------------------------------------------------------------------- /agent/test/src/bal_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/src/bal_stub.cc -------------------------------------------------------------------------------- /agent/test/src/main_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/src/main_test.cc -------------------------------------------------------------------------------- /agent/test/src/test_core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/agent/test/src/test_core.cc -------------------------------------------------------------------------------- /logConf/td-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/logConf/td-agent.conf -------------------------------------------------------------------------------- /olt-sw-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/README.md -------------------------------------------------------------------------------- /olt-sw-upgrade/change_labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/change_labels.sh -------------------------------------------------------------------------------- /olt-sw-upgrade/install_onl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/install_onl.sh -------------------------------------------------------------------------------- /olt-sw-upgrade/test/ansible/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/test/ansible/inventory/hosts -------------------------------------------------------------------------------- /olt-sw-upgrade/test/ansible/roles/upgrade/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/test/ansible/roles/upgrade/tasks/main.yml -------------------------------------------------------------------------------- /olt-sw-upgrade/test/ansible/upgrade_olt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/olt-sw-upgrade/test/ansible/upgrade_olt.yml -------------------------------------------------------------------------------- /protos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/protos/Makefile -------------------------------------------------------------------------------- /protos/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencord/openolt/HEAD/protos/generate.go --------------------------------------------------------------------------------