/usr/bin/phablet-config is in phablet-tools 1.0+14.04.20140416-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | #! /usr/bin/python
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
# Copyright (C) 2013 Canonical Ltd.
# Author: Chris Wayne <cwayne@ubuntu.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
from phabletutils.device import AndroidBridge
from phabletutils.fileutils import create_temp_dir
from subprocess import CalledProcessError
import argparse
import os
import shutil
import subprocess
import sys
LOCAL_SOURCE_FILE = '''deb file:/tmp/archive/ ./
'''
LOCAL_PIN_FILE = '''Package: *
Pin: origin ""
Pin-Priority: 1100
'''
class UbuntuDevice(AndroidBridge):
def __init__(self, device=None):
super(UbuntuDevice, self).__init__(device=device)
def _handle_timezone(adb, args):
if not args.tz:
try:
tz_string = open('/etc/timezone', 'r').read().strip('\n')
print(tz_string)
except IOError:
print("/etc/timezone not found. Please pass --tz")
sys.exit(1)
else:
tz_string = args.tz
if not is_valid_tz(tz_string):
print("Not a valid timezone")
sys.exit(1)
print("Changing timezone to %s" % tz_string)
try:
cmd = "gdbus call -y -d org.freedesktop.timedate1 -o " \
"/org/freedesktop/timedate1 -m " \
"org.freedesktop.timedate1.SetTimezone '%s' false" % tz_string
print(cmd)
adb.shell(cmd)
print("Time zone successfully changed")
except:
print("Timezone has not been changed")
sys.exit(1)
def is_valid_tz(timezone):
tz_path = os.path.join('/usr/share/zoneinfo/' + timezone)
return os.path.isfile(tz_path)
def is_valid_locale(adb, locale):
phone_locales = adb.shell('ls /usr/share/locale/').split()
return locale in phone_locales
def _handle_locale(adb, args):
if not args.lc and not args.list:
print("No locale to set, exiting")
sys.exit(1)
if args.list:
print(adb.shell('ls /usr/share/locale'))
sys.exit(0)
elif not is_valid_locale(adb, args.lc):
print("Not a valid locale, exiting")
sys.exit(1)
try:
cmd = "dbus-send --system --print-reply --dest="\
"org.freedesktop.Accounts /org/freedesktop/Accounts/User32011 "\
"org.freedesktop.Accounts.User.SetLanguage"\
" string:%s" % args.lc
adb.shell(cmd)
print("Locale set to %s, rebooting to take effect" % args.lc)
adb.reboot()
except:
print("Locale was not changed")
sys.exit(1)
def _handle_autopilot(adb, args):
if args.dbus_probe == 'enable':
rfile = '/usr/share/autopilot-touch/apparmor/click.rules'
adb.shell('aa-clickhook -f --include=%s' % rfile)
else:
adb.shell('aa-clickhook -f')
def _handle_writable_image(adb, args):
fname = '/userdata/.writable_image'
try:
adb.shell('test -e %s' % fname, False)
except CalledProcessError as e:
adb.shell('touch %s' % fname, False)
adb.reboot()
adb.wait_for_device()
adb.wait_for_network()
try:
if args.package_dir:
tmp_archive = create_temp_dir()
for package_dir in args.package_dir:
# Copy all deb files under the given dir to a temp dir
for root, dirs, files in os.walk(package_dir):
for deb_file in files:
if deb_file.endswith('.deb'):
shutil.copy(os.path.join(root, deb_file),
tmp_archive)
# Create the Packages file
current_dir = os.getcwd()
os.chdir(tmp_archive)
subprocess.check_call(
'/usr/bin/dpkg-scanpackages . /dev/null > Packages',
shell=True)
os.chdir(current_dir)
# Create the apt source file for the device
with open(os.path.join(tmp_archive,
'00localrepo.list'), 'w') as sources_file:
sources_file.write(LOCAL_SOURCE_FILE)
# Create the apt pin file for the device
with open(os.path.join(tmp_archive,
'local-pin-1100'), 'w') as pin_file:
pin_file.write(LOCAL_PIN_FILE)
adb.push(tmp_archive, '/tmp/archive')
adb.shell('mv /tmp/archive/00localrepo.list '
'/etc/apt/sources.list.d')
adb.shell('mv /tmp/archive/local-pin-1100 '
'/etc/apt/preferences.d')
if args.ppa:
for ppa in args.ppa:
adb.shell('add-apt-repository -y %s' % ppa, False)
if args.package_dir or args.ppa:
adb.shell('apt-get update -qq')
if args.package:
package = ' '.join(args.package)
adb.shell('apt-get install -yq --force-yes %s' % package, False)
if args.package_dir:
# Remove the local archive
adb.shell('rm /etc/apt/sources.list.d/00localrepo.list')
adb.shell('rm /etc/apt/preferences.d/local-pin-1100')
adb.shell('rm -rf /tmp/archive')
except CalledProcessError as e:
print(e)
print(e.output)
sys.exit(e.returncode)
def _handle_edges_intro(adb, args):
fmt = 'dbus-send --system --print-reply --dest=org.freedesktop.Accounts ' \
'/org/freedesktop/Accounts/User32011 %s ' \
'string:com.canonical.unity.AccountsService string:demo-edges'
getter = fmt % 'org.freedesktop.DBus.Properties.Get'
setter = fmt % 'org.freedesktop.DBus.Properties.Set' + ' variant:boolean:'
enabled = adb.shell(getter).find('true') != -1
if args.enable and enabled:
print('already enabled')
elif not args.enable and not enabled:
print('already disabled')
else:
setter += 'true' if args.enable else 'false'
adb.shell(setter)
def parse_arguments():
parser = argparse.ArgumentParser(
description='Set up different configuration options on a device.')
parser.add_argument('-s', '--serial',
help='''Device serial. Use when more than
one device is connected.''')
sub = parser.add_subparsers(title='Commands', metavar='')
tz = sub.add_parser('timezone', help='Configure timezone for device.')
tz.add_argument('--tz',
help='''Timezone to push to phone. Defaults to whatever
is in hosts /etc/timezone''')
tz.set_defaults(func=_handle_timezone)
lc = sub.add_parser('locale', help="Configure locale for device.")
lc.add_argument('--lc', help='''Locale to push to phone. See
--list for valid locales''')
lc.add_argument('--list', help='List available locales on device',
action='store_true')
lc.set_defaults(func=_handle_locale)
ap = sub.add_parser('autopilot', help='Configure autopilot for device.')
ap.add_argument('--dbus-probe', choices=('enable', 'disable'),
required=True,
help='''Allows autopilot the ability to introspect DBUS
objects so that tests will work.''')
ap.set_defaults(func=_handle_autopilot)
dm = sub.add_parser('writable-image', help='''Enable read/write access to
device partitions and optionally install extra
packages.''')
dm.add_argument('--ppa', action='append',
help='PPA to add. Can be repeated.')
dm.add_argument('--package-dir', action='append',
help='''Directory containing debs to use as an on device
repository. Can be repeated.''')
dm.add_argument('-p', '--package', action='append',
help='Package to install. Can be repeated.')
dm.set_defaults(func=_handle_writable_image)
ei = sub.add_parser('edges-intro', help='Enable/disable the edges intro.')
ei.set_defaults(func=_handle_edges_intro)
ei = ei.add_mutually_exclusive_group(required=True)
ei.add_argument('--enable', action='store_true', required=False,
help='enable edges intro')
ei.add_argument('--disable', action='store_false', required=False,
help='disable edges intro')
return parser.parse_args()
def main():
args = parse_arguments()
adb = UbuntuDevice(args.serial)
adb.start()
args.func(adb, args)
if __name__ == '__main__':
main()
|