forked from webosose/build-webos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weboslayers.py
90 lines (79 loc) · 4.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright (c) 2008-2022 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', 'qemux86-64', 'qemuarm', 'raspberrypi3', 'raspberrypi3-64', 'raspberrypi4', 'raspberrypi4-64']
# github.com/openembedded repositories are read-only mirrors of the authoritative
# repositories on git.openembedded.org
webos_layers = [
('bitbake', -1, 'https://github.com/openembedded/bitbake.git', 'branch=1.46,commit=7fc4cffe', ''),
('meta', 5, 'https://github.com/openembedded/openembedded-core.git', 'branch=dunfell,commit=73d2b640ad', 'oe-core'),
('meta-oe', 10, 'https://github.com/openembedded/meta-openembedded.git', 'branch=dunfell,commit=f22bf6efaa', 'meta-oe'),
('meta-multimedia', 11, 'https://github.com/openembedded/meta-openembedded.git', '', 'meta-oe'),
('meta-networking', 12, 'https://github.com/openembedded/meta-openembedded.git', '', 'meta-oe'),
('meta-python', 13, 'https://github.com/openembedded/meta-openembedded.git', '', 'meta-oe'),
('meta-filesystems', 14, 'https://github.com/openembedded/meta-openembedded.git', '', 'meta-oe'),
('meta-updater', 15, 'https://github.com/uptane/meta-updater.git', 'branch=dunfell,commit=6b4222e', ''),
('meta-virtualization', 16, 'https://git.yoctoproject.org/git/meta-virtualization', 'branch=dunfell,commit=a63a54d', ''),
('meta-qt6', 20, 'https://code.qt.io/yocto/meta-qt6.git', 'branch=6.3.1,commit=39eeba2', ''),
('meta-webos-backports-3.2', 33, 'https://github.com/webosose/meta-webosose', '', ''),
('meta-webos-backports-3.3', 34, 'https://github.com/webosose/meta-webosose', '', ''),
('meta-webos-backports-3.4', 35, 'https://github.com/webosose/meta-webosose', '', ''),
('meta-webos-backports-4.0', 36, 'https://github.com/webosose/meta-webosose', '', ''),
('meta-webos', 40, 'https://github.com/webosose/meta-webosose.git', 'branch=master,commit=15115d2d70', ''),
('meta-raspberrypi', 50, 'https://github.com/agherzan/meta-raspberrypi.git', 'branch=dunfell,commit=2081e1b', ''),
('meta-webos-raspberrypi', 51, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-updater', 52, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-virtualization', 53, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-smack', 75, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-security', 77, 'https://git.yoctoproject.org/git/meta-security', 'branch=dunfell,commit=c62970f', ''),
]