/usr/bin/phablet-dev-bootstrap is in phablet-tools 1.2+16.04.20160317-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 | #! /usr/bin/python
# This program is free software: you can redistribute it and/or modify it
# under the terms of the the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the applicable version of 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/>.
#
# Copyright (C) 2013 Canonical, Ltd.
# TODO Install packages
# TODO allow new vendor setup from existing repo
import argparse
import logging
import os
import subprocess
from os import path
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger()
log.name = 'phablet-dev-bootstrap'
repo = {
'aosp':
'https://code-review.phablet.ubuntu.com/p/aosp/platform/manifest.git',
}
repo_branch = 'phablet-4.4.2_r1'
valid_vendors = ('mako', 'flo', 'deb', 'manta', 'hammerhead', 'generic')
vendor_blobs = 'lp:~phablet-team/phablet-tools/aosp-vendor-4.4.2'
class StringSplitAction(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
setattr(namespace, self.dest, values.split(','))
def validate_vendors(vendors):
for vendor in vendors:
if vendor not in valid_vendors:
log.error('Vendor device %s not supported' % vendor)
exit(1)
def setup_sync_dir(target_directory, continue_sync=False):
'''Creates and changes to target directory'''
if not continue_sync:
try:
if os.path.isfile(target_directory):
raise OSError('%s is not a directory' %
target_directory)
elif not os.path.isdir(target_directory):
log.debug('Creating sync directory %s' % target_directory)
os.mkdir(target_directory)
elif os.listdir(target_directory):
raise OSError('%s is not empty and not using -c' %
target_directory)
except OSError as e:
if not e.message:
log.error('Cannot setup environment in %s' %
target_directory)
else:
log.error(e.message)
exit(1)
log.info('Changing to workdir %s' % target_directory)
os.chdir(target_directory)
def sync_repository(source, branch, jobs='1', reference=None):
'''Syncs android sources with the repo command'''
try:
log.info('Initializing repository')
init_cmd = ['repo', 'init',
'-u', repo[source], '-b', branch]
if reference:
init_cmd += ['--reference', reference]
subprocess.check_call(init_cmd)
subprocess.check_call(['repo',
'sync',
'-j%s' % jobs]
)
except subprocess.CalledProcessError:
log.error('Error while trying to sync repository')
exit(1)
def sync_vendors(vendors):
cmd = '''bzr branch %s vendor''' % vendor_blobs
log.debug('Executing %s' % cmd)
subprocess.check_call(cmd, shell=True, executable='/bin/bash')
def parse_arguments():
parser = argparse.ArgumentParser(
description='Phablet Development Environment Setup Tool')
parser.add_argument('-v',
'--vendors',
dest='vendors',
help='''Comma separated list of devices to Setup
such as mako, flo, deb, manta, hammerhead, generic''',
action=StringSplitAction,
)
parser.add_argument('-j',
'--jobs',
dest='jobs',
help='''Ammount of sync jobs''',
default='1',
)
parser.add_argument('-c',
'--continue',
dest='continue_sync',
action='store_true',
help='''Continue a previously started sync''',
default=False,
)
parser.add_argument('-r',
'--reference',
help='Use another dev environment as reference for '
'git',
default='',
)
parser.add_argument('--repo-branch',
help='Choose branch to init from',
default=repo_branch,
)
parser.add_argument('--sources',
default='aosp',
choices=['aosp'],
help='Use to select a different source target.',
)
parser.add_argument('target_directory',
help='Target directory for sources',
)
return parser.parse_args()
def main(args):
if args.vendors:
validate_vendors(args.vendors)
setup_sync_dir(path.abspath(path.expanduser(args.target_directory)),
args.continue_sync)
sync_repository(args.sources, args.repo_branch, args.jobs, args.reference)
if args.vendors:
sync_vendors(args.vendors)
if __name__ == "__main__":
args = parse_arguments()
main(args)
|