summaryrefslogtreecommitdiffstats
path: root/test/enable-cbs
diff options
context:
space:
mode:
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))