-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathweboslayers.py
68 lines (64 loc) · 3.13 KB
/
weboslayers.py
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
# Copyright (c) 2008-2014 LG Electronics, Inc.
#
# 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.
#
# This implementation introduces next generation build environment for
# Open webOS. The change introduces a mechanism to add additional layers to the
# base ones: oe-core, meta-oe, and meta-webos, and to specify the commits to be
# used for each. mcf now expects the layers to be defined in this file
# (weboslayers.py in the same directory as mcf) as a list of Python data tuples:
#
# webos_layers = [
# ('layer-name', priority, 'URL', 'submission', 'working-dir'),
# ...
# ]
#
# where:
#
# layer-name = Unique identifier; it represents the layer directory containing
# conf/layer.conf.
#
# priority = Integer layer priority as defined by OpenEmbedded. It also
# specifies the order in which layers are searched for files.
# Larger values have higher priority. A value of -1 indicates
# that the entry is not a layer; for example, bitbake.
#
# URL = The Git repository address for the layer from which to clone.
# A value of '' skips the cloning.
#
# submission = The information used by Git to checkout and identify the precise
# content. Submission values could be "branch=<name>" and
# "commit=<id>" or "tag=<tag>". Omitted branch information means
# only that "master" will be used as the name of the local
# branch. Omitted commit or tag means origin/HEAD will be checked
# out (which might NOT be origin/master, although
# it usually is).
#
# working-dir = Alternative directory for the layer.
#
# The name of the distribution is also defined in this file
# along with a list of the valid MACHINE-s
#
Distribution = "webos"
# Supported MACHINE-s
Machines = ['qemux86', 'qemuarm']
# github.com/openembedded repositories are read-only mirrors of the authoritative
# repositories on git.openembedded.org
webos_layers = [
('bitbake', -1, 'git://github.com/openembedded/bitbake.git', 'branch=1.18,commit=0f7b6a0', ''),
('meta', 5, 'git://github.com/openembedded/openembedded-core.git', 'branch=dylan,commit=bf2d538', ''),
('meta-oe', 6, 'git://github.com/openembedded/meta-openembedded.git', 'branch=dylan,commit=70ebe86', ''),
('meta-networking', 6, 'git://github.com/openembedded/meta-openembedded.git', '', ''),
('meta-webos-backports', 9, 'git://github.com/openwebos/meta-webos-backports.git', 'commit=ed80399', ''),
('meta-webos', 10, 'git://github.com/openwebos/meta-webos.git', 'commit=f43220d', ''),
]