summaryrefslogtreecommitdiffstats
path: root/test/enable-cbs
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-06-07 04:02:31 -0700
committerMarcel Holtmann <marcel@holtmann.org>2010-06-07 04:02:31 -0700
commitee3343f81b03efa387c7feee1a109d49b3ebf66d (patch)
tree024c519924b166b90250053b660c912569e55ec2 /test/enable-cbs
parent0329a6ceaf8f69857cb5f8437b9db86ca327ef1d (diff)
downloadofono-ee3343f81b03efa387c7feee1a109d49b3ebf66d.tar.bz2
Add test script for enabling cell broadcast
Diffstat (limited to 'test/enable-cbs')
-rwxr-xr-xtest/enable-cbs20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/enable-cbs b/test/enable-cbs
new file mode 100755
index 00000000..2da57e93
--- /dev/null
+++ b/test/enable-cbs
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+
+import dbus
+import sys
+
+bus = dbus.SystemBus()
+
+if len(sys.argv) == 2:
+ path = sys.argv[1]
+else:
+ manager = dbus.Interface(bus.get_object('org.ofono', '/'),
+ 'org.ofono.Manager')
+ properties = manager.GetProperties()
+ path = properties["Modems"][0]
+
+print "Enabling cell broadcast on modem %s..." % path
+cbs = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.CbsManager')
+
+cbs.SetProperty("Powered", dbus.Boolean(1))