r293 - in trunk/software/gsm0710muxd: data src
smartphones-commits at linuxtogo.org
smartphones-commits at linuxtogo.org
Fri May 2 16:05:40 CEST 2008
Author: emdete
Date: 2008-05-02 16:05:39 +0200 (Fri, 02 May 2008)
New Revision: 293
Modified:
trunk/software/gsm0710muxd/data/gsm0710muxd
trunk/software/gsm0710muxd/src/mux.xml
trunk/software/gsm0710muxd/src/muxercontrol.vala
Log:
fixed path in init.d script
fixed typo in comment
corrected method signature
Modified: trunk/software/gsm0710muxd/data/gsm0710muxd
===================================================================
--- trunk/software/gsm0710muxd/data/gsm0710muxd 2008-05-02 11:10:46 UTC (rev 292)
+++ trunk/software/gsm0710muxd/data/gsm0710muxd 2008-05-02 14:05:39 UTC (rev 293)
@@ -4,7 +4,7 @@
case "$1" in
start)
start-stop-daemon --start --pidfile /var/run/${NAME}.pid \
- --make-pidfile --background --startas /usr/bin/$NAME -- \
+ --make-pidfile --background --startas /usr/sbin/$NAME -- \
$SYSROOTOPT -f 100
;;
stop)
Modified: trunk/software/gsm0710muxd/src/mux.xml
===================================================================
--- trunk/software/gsm0710muxd/src/mux.xml 2008-05-02 11:10:46 UTC (rev 292)
+++ trunk/software/gsm0710muxd/src/mux.xml 2008-05-02 14:05:39 UTC (rev 293)
@@ -39,10 +39,18 @@
see which channels are closed not only by number but with an
explaining name like 'ppp'. future use may be to allocate a
special channel because some modems allow some operations on a
- concret channel no only. -->
+ concret channel number only. -->
<arg name="origin" type="s" direction="in"/>
<!-- unix device for this channel -->
<arg name="channel" type="s" direction="out"/>
</method>
+ <!--
+ <method name="ListChannels">
+ <arg name="id" type="a{io}" direction="out"/>
+ </method>
+ <method name="CloseChannel">
+ <arg name="id" type="i" direction="in"/>
+ </method>
+ -->
</interface>
</node>
Modified: trunk/software/gsm0710muxd/src/muxercontrol.vala
===================================================================
--- trunk/software/gsm0710muxd/src/muxercontrol.vala 2008-05-02 11:10:46 UTC (rev 292)
+++ trunk/software/gsm0710muxd/src/muxercontrol.vala 2008-05-02 14:05:39 UTC (rev 293)
@@ -21,7 +21,7 @@
{
return gsm0710muxd.c_set_power(origin, on);
}
- public bool get_power(string origin, bool on)
+ public bool get_power(string origin)
{
return gsm0710muxd.c_get_power(origin);
}
More information about the Smartphones-commits
mailing list