1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 20:09:17 +00:00

meta-ti-test: Create layout for new layer

We are moving the meta-arago-test layer to meta-ti-test.  This is the
first commit that creates the layer directory structure.  Follow on
patches will import all of the various recipes.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
Ryan Eatmon
2026-04-28 11:13:46 -05:00
parent c803af8d8d
commit 7c4b1ed307
4 changed files with 103 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
+34
View File
@@ -0,0 +1,34 @@
meta-ti-test provides an additional packagegroup ti-test and some of the recipes that go into that group
This layer works with the latest Yocto Project release (currently 2.2+) and tracks
the stable/maintenance branches (currently "master") of the corresponding layers:
URI: git://git.openembedded.org/openembedded-core
branch: master
revision: HEAD
layers: meta
URI: git://git.yoctoproject.org/meta-ti
branch: master
revision: HEAD
layers: meta-ti-bsp, meta-ti-extras
URI: git://git.yoctoproject.org/meta-arm
branch: master
revision: HEAD
layers: meta-arm, meta-arm-toolchain
URI: git://git.openembedded.org/meta-openembedded
branch: master
revision: HEAD
layers: meta-oe, meta-networking, meta-python
Send pull requests, patches, comments or questions to:
meta-ti@lists.yoctoproject.org
Please note - meta-ti mailing list requires subscription for posting:
https://lists.yoctoproject.org/g/meta-ti
Layer maintainers:
Ryan Eatmon <reatmon@ti.com>
Denys Dmytriyenko <denys@konsulko.com>
+20
View File
@@ -0,0 +1,20 @@
How to Report a Potential Vulnerability?
========================================
If you would like to report a public issue (for example, one with a released
CVE number), please report it to the mailing list:
https://lists.yoctoproject.org/g/meta-ti
If you are dealing with a not-yet released or urgent issue, please send a
message to one of the maintainers listed in the README. Include as many
details as possible:
- the layer or software module affected
- the recipe and its version
- any example code, if available
Branches maintained with security fixes
---------------------------------------
See https://wiki.yoctoproject.org/wiki/Releases for the list of current
releases. We only accept patches for the LTS releases and the master branch.
+32
View File
@@ -0,0 +1,32 @@
# We have a conf and classes directory, append to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have a recipes directory, add to BBFILES
BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
BBFILE_COLLECTIONS += "meta-ti-test"
BBFILE_PATTERN_meta-ti-test := "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-ti-test = "10"
LAYERSERIES_COMPAT_meta-ti-test = "whinlatter wrynose"
# Set a variable to get to the top of the metadata location
TITESTBASE := '${@os.path.normpath("${LAYERDIR}/")}'
LICENSE_PATH += "${LAYERDIR}/licenses"
LAYERDEPENDS_meta-ti-test = " \
core \
openembedded-layer \
networking-layer \
filesystems-layer \
meta-python \
"
BBFILES_DYNAMIC += " \
"
# Codecs in ffmpeg with questionable patent status are not included by
# default. As this entire layer is purely optional for testing purposes only
# and not meant to be shipped, add support for the ffmpeg commercial license.
LICENSE_FLAGS_ACCEPTED:append:ti-soc = " commercial_ffmpeg"