Commit 8ab35cd8 authored by Martin Jansa's avatar Martin Jansa
Browse files

webos-eloquent-thud.mcf: Add support for Eloquent Elusor release

Showing with 78 additions and 0 deletions
+78 -0
# Copyright (c) 2019 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.
McfFileVersion = 2
# Value for DISTRO
Distribution = 'webos'
webOSOSEBuildNumber = '91'
# Supported MACHINE-s
Machines = ['qemux86', 'raspberrypi3']
# Allow the URL and branch for meta-ros, meta-ros-webos and meta-webos to be overridden by settings in the environment.
from os import getenv
MetaRos_RepoURL = getenv('MCF_META_ROS_REPO_URL', 'git://github.com/ros/meta-ros.git')
MetaRos_Branch = getenv('MCF_META_ROS_BRANCH', 'thud')
MetaRos_Commit = getenv('MCF_META_ROS_COMMIT', 'master/milestones/8')
MetaRosWebos_RepoURL = getenv('MCF_META_ROS_WEBOS_REPO_URL', 'git://github.com/ros/meta-ros-webos.git')
MetaRosWebos_Branch = getenv('MCF_META_ROS_WEBOS_BRANCH', 'thud')
MetaRosWebos_Commit = getenv('MCF_META_ROS_WEBOS_COMMIT', 'master/milestones/8')
MetaWebos_RepoURL = getenv('MCF_META_WEBOS_REPO_URL', 'git://github.com/webosose/meta-webosose.git')
MetaWebos_Branch = getenv('MCF_META_WEBOS_BRANCH', 'master')
MetaWebos_Commit = getenv('MCF_META_WEBOS_COMMIT', 'builds/webosose/master/' + webOSOSEBuildNumber)
# Layers = [
# (layer-name: str, priority: int, URL: str, fetch: dict, options: dict),
# ...
# ]
# Note that the github.com/openembedded repositories are read-only mirrors of
# the authoritative repositories on git.openembedded.org .
Layers = [
('bitbake', -1, 'git://github.com/openembedded/bitbake.git', {'branch': '1.40', 'commit': '4ce92f43'}, {}),
('meta', 5, 'git://github.com/openembedded/openembedded-core.git', {'branch': 'thud', 'commit': 'f162d5bfe6'}, {}),
('meta-oe', 10, 'git://github.com/openembedded/meta-openembedded.git', {'branch': 'thud', 'commit': '9b3b907f30'}, {}),
('meta-multimedia', 11, 'git://github.com/openembedded/meta-openembedded.git', {}, {}),
('meta-networking', 12, 'git://github.com/openembedded/meta-openembedded.git', {}, {}),
('meta-python', 13, 'git://github.com/openembedded/meta-openembedded.git', {}, {}),
('meta-filesystems', 14, 'git://github.com/openembedded/meta-openembedded.git', {}, {}),
('meta-qt5-compat', 19, MetaWebos_RepoURL, {}, {}),
('meta-qt5', 20, 'git://github.com/meta-qt5/meta-qt5.git', {'branch': 'krogoth', 'commit': 'dcfcb58'}, {}),
('meta-ros-backports-warrior',34, MetaRos_RepoURL, {}, {}),
('meta-ros-common', 37, MetaRos_RepoURL, {'branch': MetaRos_Branch, 'commit': MetaRos_Commit}, {}),
('meta-ros2', 38, MetaRos_RepoURL, {}, {}),
('meta-ros2-eloquent', 39, MetaRos_RepoURL, {}, {}),
('meta-webos', 40, MetaWebos_RepoURL, {'branch': MetaWebos_Branch, 'commit': MetaWebos_Commit}, {}),
('meta-raspberrypi', 50, 'git://git.yoctoproject.org/meta-raspberrypi', {'branch': 'thud', 'commit': '89bdf97'}, {}),
('meta-webos-raspberrypi', 51, MetaWebos_RepoURL, {}, {}),
('meta-ros-webos', 60, MetaRosWebos_RepoURL, {'branch': MetaRosWebos_Branch, 'commit': MetaRosWebos_Commit}, {}),
]
# BblayersConfExtraLines is a list of strings to be appended to the generated
# conf/bblayers.conf .
BblayersConfExtraLines = ['MCF_DISTRO ?= "' + Distribution + '"',
'ROS_DISTRO ?= "eloquent"',
'MCF_SUPPORTED_MACHINES ?= "' + ' '.join(Machines) + '"',
'MCF_WEBOS_BUILD_NUMBER = "' + webOSOSEBuildNumber + '"',
]
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment