-
Notifications
You must be signed in to change notification settings - Fork 126
/
weboslayers.py
89 lines (78 loc) · 4.8 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
# Copyright (c) 2008-2024 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=2.0,commit=eb5c1ce6b', ''),
('meta', 5, 'https://github.com/openembedded/openembedded-core.git', 'branch=kirkstone,commit=f09fca692f', 'oe-core'),
('meta-oe', 10, 'https://github.com/openembedded/meta-openembedded.git', 'branch=kirkstone,commit=dd3d2293ff', '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-clang', 15, 'https://github.com/kraj/meta-clang.git', 'branch=kirkstone,commit=8bc893d', ''),
('meta-virtualization', 17, 'https://git.yoctoproject.org/git/meta-virtualization', 'branch=kirkstone,commit=02a6c00d', ''),
('meta-qt6', 20, 'https://code.qt.io/yocto/meta-qt6.git', 'branch=6.7.2,commit=v6.7.2', ''),
('meta-webos-backports-4.1', 30, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-backports-4.2', 31, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-backports-4.3', 32, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-backports-5.0', 33, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-backports-5.1', 34, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos', 40, 'https://github.com/webosose/meta-webosose.git', 'branch=master,commit=9af32dd4', ''),
('meta-raspberrypi', 50, 'https://github.com/agherzan/meta-raspberrypi.git', 'branch=kirkstone,commit=d7544f3', ''),
('meta-webos-raspberrypi', 51, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-webos-virtualization', 53, 'https://github.com/webosose/meta-webosose.git', '', ''),
('meta-security', 76, 'https://git.yoctoproject.org/git/meta-security', 'branch=kirkstone,commit=353078b', ''),
]