From 4f1ddca36fb927ea8531fd4191ca8ffdd015efe2 Mon Sep 17 00:00:00 2001 From: Herb Kuta Date: Mon, 10 Jun 2019 16:01:44 -0700 Subject: [PATCH] DRAFT Add webos-dashing.mcf; branch is [thud-draft] (copy from webos-crystal.mcf) --- files/webos-dashing.mcf | 60 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 files/webos-dashing.mcf diff --git a/files/webos-dashing.mcf b/files/webos-dashing.mcf new file mode 100644 index 0000000..e4c0356 --- /dev/null +++ b/files/webos-dashing.mcf @@ -0,0 +1,60 @@ +# 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 = '84' + +# Supported MACHINE-s +Machines = ['raspberrypi3', 'qemux86'] + +# 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': '7c1eb51d'}, {}), + +('meta-gplv2', 1, 'git://git.yoctoproject.org/meta-gplv2', {'branch': 'thud', 'commit': 'aabc30f'}, {}), +('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, 'git://github.com/webosose/meta-webosose.git', {}, {}), +('meta-qt5', 20, 'git://github.com/meta-qt5/meta-qt5.git', {'branch': 'krogoth', 'commit': 'dcfcb58'}, {}), + +('meta-ros', 38, 'git://github.com/ros/meta-ros.git', {'branch': 'thud-draft'}, {}), + +('meta-webos', 40, 'git://github.com/webosose/meta-webosose.git', {'branch': 'master', 'commit': 'builds/webosose/master/' + webOSOSEBuildNumber}, {}), + +('meta-raspberrypi', 50, 'git://git.yoctoproject.org/meta-raspberrypi', {'branch': 'thud', 'commit': 'c71d79e'}, {}), +('meta-webos-raspberrypi', 51, 'git://github.com/webosose/meta-webosose.git', {}, {}), +] + +# BblayersConfExtraLines is a list of strings to be appended to the generated +# conf/bblayers.conf . +BblayersConfExtraLines = ['DISTRO ?= "' + Distribution + '"', + 'ROS_DISTRO ?= "dashing"', + 'ROS_SUPPORTED_MACHINES ?= "' + ' '.join(Machines) + '"', + 'WEBOS_DISTRO_VERSION_TYPE_append = ".' + webOSOSEBuildNumber + '"', + ]