summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2024-12-14 14:41:51 -0500
committerRyan Eatmon <reatmon@ti.com>2024-12-16 08:31:58 -0600
commit0b2a4f024a038fb23b713c1e8847e2ff3aaacc8e (patch)
tree22d58919c3c1d337f9d08d9d74f3294e84cd5457
parent97e5fcc396d30e178082e64cf1162ebfe9da76e6 (diff)
downloadmeta-ti-0b2a4f024a038fb23b713c1e8847e2ff3aaacc8e.tar.gz
meta-beagle: create a separate layer for Beagle platforms
The new meta-beagle will host all supported Beagle platforms that use TI SoCs and hence need to depend on meta-ti-bsp. The default BSP for the platforms in this layer will use BeagleBoard.org official trees for the Linux kernel and U-boot. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
-rw-r--r--meta-beagle/COPYING.MIT17
-rw-r--r--meta-beagle/README31
-rw-r--r--meta-beagle/conf/layer.conf15
3 files changed, 63 insertions, 0 deletions
diff --git a/meta-beagle/COPYING.MIT b/meta-beagle/COPYING.MIT
new file mode 100644
index 00000000..89de3547
--- /dev/null
+++ b/meta-beagle/COPYING.MIT
@@ -0,0 +1,17 @@
1Permission is hereby granted, free of charge, to any person obtaining a copy
2of this software and associated documentation files (the "Software"), to deal
3in the Software without restriction, including without limitation the rights
4to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5copies of the Software, and to permit persons to whom the Software is
6furnished to do so, subject to the following conditions:
7
8The above copyright notice and this permission notice shall be included in
9all copies or substantial portions of the Software.
10
11THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
17THE SOFTWARE.
diff --git a/meta-beagle/README b/meta-beagle/README
new file mode 100644
index 00000000..a17e6433
--- /dev/null
+++ b/meta-beagle/README
@@ -0,0 +1,31 @@
1OpenEmbedded/Yocto layer that extends meta-ti-bsp with BeagleBoard.org platforms.
2
3It is hosted on http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/ with the
4source repository at git://git.yoctoproject.org/meta-ti
5
6
7This layer depends on:
8
9URI: git://git.openembedded.org/openembedded-core
10layers: meta
11branch: master
12
13URI: git://git.yoctoproject.org/meta-arm
14layers: meta-arm
15branch: master
16
17URI: git://git.yoctoproject.org/meta-ti
18branch: master
19revision: HEAD
20layers: meta-ti-bsp
21
22
23Send pull requests, patches, comments or questions to:
24meta-ti@lists.yoctoproject.org
25
26Please note - meta-ti mailing list requires subscription for posting:
27https://lists.yoctoproject.org/g/meta-ti
28
29Maintainers:
30Denys Dmytriyenko <denys@konsulko.com>
31Ryan Eatmon <reatmon@ti.com>
diff --git a/meta-beagle/conf/layer.conf b/meta-beagle/conf/layer.conf
new file mode 100644
index 00000000..badabefc
--- /dev/null
+++ b/meta-beagle/conf/layer.conf
@@ -0,0 +1,15 @@
1# We have a conf and classes directory, append to BBPATH
2BBPATH .= ":${LAYERDIR}"
3
4# We have a recipes directory, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
6
7BBFILE_COLLECTIONS += "meta-beagle"
8BBFILE_PATTERN_meta-beagle := "^${LAYERDIR}/"
9BBFILE_PRIORITY_meta-beagle = "6"
10
11LAYERSERIES_COMPAT_meta-beagle = "styhead walnascar"
12
13LAYERDEPENDS_meta-beagle = " \
14 meta-ti-bsp \
15"