diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-01-10 12:31:34 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-01-10 12:31:34 (GMT) |
commit | 6218a84102038f95683cffbbde9fcf9fff8d2827 (patch) | |
tree | 61ff60f126451ef14a8122abe0ba04102252b1a4 /openwrt/rhctl/files | |
parent | 0e13f8198ac1edc6f9b3a62492425cbdfd8669e4 (diff) |
improved termios settings
fixed length check at write
fixed output at log
Diffstat (limited to 'openwrt/rhctl/files')
-rw-r--r-- | openwrt/rhctl/files/rhctl.config | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openwrt/rhctl/files/rhctl.config b/openwrt/rhctl/files/rhctl.config index 3b4874e..7d14e51 100644 --- a/openwrt/rhctl/files/rhctl.config +++ b/openwrt/rhctl/files/rhctl.config @@ -1,4 +1,5 @@ config 'switchctl' + option log 'syslog:5,switchctl,daemon' option command_sock '/var/run/rhctl/switchctl.sock' option baudrate '19200' option device '/dev/audioswitch' @@ -9,7 +10,7 @@ config 'switchctl' config 'serialclient' # option disabled 1 option name 'master' - option log 'syslog:3,serialclient-master,daemon' + option log 'syslog:5,serialclient-master,daemon' option command_sock '/var/run/rhctl/switchctl.sock' option baudrate '38400' option device '/dev/ttyMaster' @@ -18,13 +19,15 @@ config 'serialclient' config 'serialclient' # option disabled 1 option name 'standby' - option log 'syslog:3,serialclient-standby,daemon' + option log 'syslog:5,serialclient-standby,daemon' option command_sock '/var/run/rhctl/switchctl.sock' option baudrate '38400' option device '/dev/ttyStandby' option type 'standby' config 'heartbeatclient' + option log 'syslog:5,heartbeatclient,daemon' option command_sock '/var/run/rhctl/switchctl.sock' option baudrate '38400' option device '/dev/ttyHeartbeat' + |