forked from perezerah/build-webos-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcf
executable file
·294 lines (220 loc) · 12.8 KB
/
mcf
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#!/usr/bin/python3
# -*- python -*-
# Time-stamp: <30-Aug-2012 13:57:37 PDT by [email protected]>
# Copyright (c) 2008 - 2012 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
# FIXME: I haven't figured out how to do the git submodule stuff using
# the GitPython library. The library looks pretty messy, frankly, but
# I don't see any other plausible alternatives. So for now I'm just
# doing shell calls. Even if I did find a way to use the library,
# there's an open question of how to get it onto the current machine
# so that it can be used.
from __future__ import with_statement, print_function, unicode_literals, absolute_import, division
import argparse
import errno
import logging
import os
import subprocess
import sys
logger = logging.getLogger(__name__)
submodules = {}
def echo_check_call(todo, verbosity, cwd=None):
if verbosity:
cmd = 'set -x; ' + todo
else:
cmd = todo
return subprocess.check_call(cmd,
stdout=sys.stdout,
stderr=sys.stderr,
shell=True,
cwd=cwd)
def force_submodule(submodule, verbosity, branch='submodule'):
global submodules
if submodule not in submodules:
# luckily, these commands are idempotent.
echo_check_call('git submodule init {}'.format(submodule), verbosity)
echo_check_call('git submodule update {}'.format(submodule), verbosity)
if branch != 'submodule':
echo_check_call('git checkout {}'.format(branch), verbosity, cwd=submodule)
submodules[submodule] = branch
# Essentially, mcf parses options, creates mcf.status, and runs mcf.status.
def process_file(ifile, ofile, replacements):
statusfilename = ifile
statusfile = open(statusfilename, 'r')
status = statusfile.read()
statusfile.close()
for i, j in replacements:
status = status.replace(i, j)
statusfile = open(ofile, 'w')
statusfile.write(status)
statusfile.close()
return
def getopts():
parser = argparse.ArgumentParser(description='multiple configuration')
general = parser.add_argument_group('General Options')
verbosity = general.add_mutually_exclusive_group()
verbosity.add_argument('-s', '--silent', dest='verbose',
action='store_false', default=False,
help='work silently')
verbosity.add_argument('-v', '--verbose', dest='verbose',
action='store_true', default=False,
help='work verbosely')
general.add_argument('-P', '--primary', action='store_true', help='select primary devices')
general.add_argument('-S', '--secondary', action='store_true', help='select secondary devices')
general.add_argument('-x', '--trace', action='store_true', help='trace')
variations = parser.add_argument_group('Variations on a Theme')
variations.add_argument('-p', '--enable-parallel-make', dest='parallel_make', type=int, default=1,
help='maximum number of parallel tasks each submake of bitbake should spawn (default: 1)')
variations.add_argument('-b', '--enable-bb-number-threads', dest='bb_number_threads', type=int, default=1,
help='maximum number of bitbake tasks to spawn (default: 1)')
partitions = parser.add_argument_group('Source Partitions')
partitions.add_argument('--disable-bitbake', dest='bitbake', action='store_const', const=False,
default='submodule', help='do not check out bitbake layer (default: False)')
partitions.add_argument('-B', '--enable-bitbake', dest='bitbake', default='submodule',
help='ref to use for bitbake (default: submodule)')
partitions.add_argument('-C', '--disable-oecore', dest='oecore', action='store_const', const=False,
default='submodule', help='do not check out openembedded-core layer (default: False)')
partitions.add_argument('-D', '--enable-oecore', dest='oecore', default='submodule',
help='ref to use for openembedded-core (default: submodule)')
partitions.add_argument('-U', '--disable-webos', dest='webos', action='store_const', const=False,
default='submodule', help='do not check out meta-webos layer (default: False)')
partitions.add_argument('-W', '--enable-webos', dest='webos', default='submodule',
help='ref to use for meta-webos (default: submodule)')
# IKQ temporary replacing meta-openembedded with meta-oe from openwebos github
partitions.add_argument('-M', '--disable-metaoe', '--disable-meta-oe', dest='metaoe', action='store_const', const=False,
default='submodule', help='do not check out meta-oe layer (default: False)')
partitions.add_argument('-N', '--enable-metaoe', '--enable-meta-oe', dest='metaoe', default='submodule',
help = 'ref from which to check out meta-oe (default: submodule)')
mirrors = parser.add_argument_group('Mirrors and such')
network = mirrors.add_mutually_exclusive_group()
network.add_argument('--disable-network', dest='network', action='store_false', default=True,
help='disable fetching through the network (default: False)')
network.add_argument('--enable-network', dest='network', action='store_true', default=True,
help='enable fetching through the network (default: True)')
default_premirror = 'http://downloads.yoctoproject.org/mirror/sources'
mirrors.add_argument('--enable-premirror', dest='premirror', help='set premirror (default: {})'.format(default_premirror),
default=default_premirror)
premirroronly = mirrors.add_mutually_exclusive_group()
premirroronly.add_argument('--disable-fetch-premirror-only', dest='fetchpremirroronly', action='store_false', default=False,
help='disable fetching through the network (default: False)')
premirroronly.add_argument('--enable-fetch-premirror-only', dest='fetchpremirroronly', action='store_true', default=False,
help='enable fetching through the network (default: True)')
tarballs = mirrors.add_mutually_exclusive_group()
tarballs.add_argument('--disable-generate-mirror-tarballs', dest='generatemirrortarballs', action='store_false', default=False,
help='disable tarball generation of fetched components (default: True)')
tarballs.add_argument('--enable-generate-mirror-tarballs', dest='generatemirrortarballs', action='store_true', default=False,
help='generate tarballs suitable for mirroring (default: False)')
private = mirrors.add_mutually_exclusive_group()
private.add_argument('--disable-private-internal-component-mirror', dest='privateinternalcomponentmirror', action='store_false',
default=False, help='disable the private internal component mirror (default: disabled)')
private.add_argument('--enable-private-internal-component-mirror', dest='privateinternalcomponentmirror', action='store_true',
default=False, help='enable the private internal component mirror (default: disabled)')
parser.add_argument('machines', nargs='*')
return parser.parse_args()
if __name__ == '__main__':
# NB. The exec done by mcf.status causes argv[0] to be an absolute pathname
progname = sys.argv[0]
options = getopts()
if options.primary or options.secondary:
force_submodule('meta-webos', options.verbose, options.webos)
with open(os.path.join(os.path.dirname(progname), 'meta-webos', 'conf', 'devices'), 'r') as f:
lines = [l.split() for l in f]
options.machines.extend([x[0] for x in lines if ((options.primary and (x[1] == 'primary'))
or (options.secondary and (x[1] == 'secondary')))])
if len(options.machines) == 0:
options.machines += ['qemux86']
#parser.error('at least one MACHINE argument is required')
if options.trace:
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
f = logging.Formatter('%(asctime)s %(levelname)s %(name)s %(message)s', datefmt='%Y-%m-%dT%H:%M:%S')
s = logging.StreamHandler()
s.setLevel('DEBUG')
s.setFormatter(f)
logging.getLogger('').addHandler(s)
# Allow ../mcf to work.
srcdir = os.path.dirname(progname)
if not os.path.isabs(srcdir):
lower_dirname = os.path.join('..', srcdir)
else:
lower_dirname = srcdir
configure = os.path.join(lower_dirname, 'configure')
# read status template, process, write
files = [[os.path.join(srcdir, 'build-templates', 'mcf-status.in'), 'mcf.status'],
[os.path.join(srcdir, 'Makefile.in'), 'Makefile']]
cpu_count = 0
if options.bb_number_threads == 0 or options.parallel_make == 0:
with open('/proc/cpuinfo', 'r') as f:
for line in f:
if line.find('processor') != -1:
cpu_count += 1
if options.bb_number_threads == 0:
options.bb_number_threads = cpu_count
if options.parallel_make == 0:
options.parallel_make = cpu_count
replacements = [
['@bb_number_threads@', '{}'.format(options.bb_number_threads)],
['@configure@', configure],
['@machines@', ' '.join(options.machines)],
['@machines_only@', ' '.join([i.split(':')[0] for i in options.machines])],
['@parallel_make@', '{}'.format(options.parallel_make)],
['@premirror@', options.premirror],
['@bitbake@', '--enable-bitbake={}'.format(options.bitbake) if options.bitbake else '--disable-bitbake'],
['@oecore@', '--enable-oecore={}'.format(options.oecore) if options.oecore else '--disable-oecore'],
['@metaoe@', '--enable-metaoe={}'.format(options.metaoe) if options.metaoe else '--disable-metaoe'],
['@webos@', '--enable-webos={}'.format(options.webos) if options.webos else '--disable-webos'],
['@network@', '--{}-network'.format('enable' if options.network else 'disable')],
['@fetchpremirroronly@', '--{}-fetch-premirror-only'.format('enable' if options.fetchpremirroronly else 'disable')],
['@generatemirrortarballs@', '--{}-generate-mirror-tarballs'.format('enable'
if options.generatemirrortarballs else 'disable')],
['@privateinternalcomponentmirror@', '--{}-private-internal-component-mirror'.format('enable'
if options.privateinternalcomponentmirror else 'disable')],
['@prog@', progname],
['@srcdir@', srcdir],
]
for i, j in files:
process_file(i, j, replacements)
echo_check_call('/bin/chmod a+x mcf.status', options.verbose)
for machine in options.machines:
logger.info('Configuring in BUILD-{}'.format(machine))
logger.info('configure is {}'.format(configure))
cmd = '([ -d BUILD-{} ] || mkdir BUILD-{})'.format(machine, machine)
cmd += ' && (cd BUILD-{} && PWD= @configure@ \
--enable-bb-number-threads=@bb_number_threads@ \
--enable-parallel-make=@parallel_make@ \
--enable-premirror=@premirror@ \
@bitbake@ \
@oecore@ \
@webos@ \
@metaoe@ \
@network@ \
@fetchpremirroronly@ \
@privateinternalcomponentmirror@ \
@generatemirrortarballs@ \
--build=ubuntu \
--host={})'.format(machine, machine)
for i, j in replacements:
cmd = cmd.replace(i, j)
echo_check_call(cmd, options.verbose)
if options.bitbake:
force_submodule('bitbake', options.verbose, options.bitbake)
if options.oecore:
force_submodule('openembedded-core', options.verbose, options.oecore)
# IKQ temporary replacing meta-openembedded with meta-oe from openwebos github
if options.metaoe:
force_submodule('meta-oe', options.verbose, branch=options.metaoe)
if options.webos:
force_submodule('meta-webos', options.verbose, branch=options.webos)
logger.info('Done.\n')