mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
- Most fundamental uci mapping to proposed XPON.ONU.i.ANI.i.Enable object in 2.16 - The init scripts to procd trigger relevant components
20 lines
284 B
Bash
20 lines
284 B
Bash
#!/bin/sh
|
|
|
|
USE_PROCD=1
|
|
|
|
. /lib/functions.sh
|
|
|
|
init_xpon() {
|
|
procd_open_instance pon_msgd
|
|
procd_set_param command bcm_msgd -c gpon
|
|
procd_close_instance
|
|
procd_open_instance pon_daemon
|
|
procd_set_param command omcid start -n
|
|
procd_close_instance
|
|
|
|
}
|
|
|
|
deinit_xpon() {
|
|
gponctl stop
|
|
}
|
|
|