diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2024-12-14 14:41:51 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-12-16 08:31:58 -0600 |
commit | 0b2a4f024a038fb23b713c1e8847e2ff3aaacc8e (patch) | |
tree | 22d58919c3c1d337f9d08d9d74f3294e84cd5457 | |
parent | 97e5fcc396d30e178082e64cf1162ebfe9da76e6 (diff) | |
download | meta-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.MIT | 17 | ||||
-rw-r--r-- | meta-beagle/README | 31 | ||||
-rw-r--r-- | meta-beagle/conf/layer.conf | 15 |
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 @@ | |||
1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
2 | of this software and associated documentation files (the "Software"), to deal | ||
3 | in the Software without restriction, including without limitation the rights | ||
4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
5 | copies of the Software, and to permit persons to whom the Software is | ||
6 | furnished to do so, subject to the following conditions: | ||
7 | |||
8 | The above copyright notice and this permission notice shall be included in | ||
9 | all copies or substantial portions of the Software. | ||
10 | |||
11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
17 | THE 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 @@ | |||
1 | OpenEmbedded/Yocto layer that extends meta-ti-bsp with BeagleBoard.org platforms. | ||
2 | |||
3 | It is hosted on http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/ with the | ||
4 | source repository at git://git.yoctoproject.org/meta-ti | ||
5 | |||
6 | |||
7 | This layer depends on: | ||
8 | |||
9 | URI: git://git.openembedded.org/openembedded-core | ||
10 | layers: meta | ||
11 | branch: master | ||
12 | |||
13 | URI: git://git.yoctoproject.org/meta-arm | ||
14 | layers: meta-arm | ||
15 | branch: master | ||
16 | |||
17 | URI: git://git.yoctoproject.org/meta-ti | ||
18 | branch: master | ||
19 | revision: HEAD | ||
20 | layers: meta-ti-bsp | ||
21 | |||
22 | |||
23 | Send pull requests, patches, comments or questions to: | ||
24 | meta-ti@lists.yoctoproject.org | ||
25 | |||
26 | Please note - meta-ti mailing list requires subscription for posting: | ||
27 | https://lists.yoctoproject.org/g/meta-ti | ||
28 | |||
29 | Maintainers: | ||
30 | Denys Dmytriyenko <denys@konsulko.com> | ||
31 | Ryan 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 | ||
2 | BBPATH .= ":${LAYERDIR}" | ||
3 | |||
4 | # We have a recipes directory, add to BBFILES | ||
5 | BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" | ||
6 | |||
7 | BBFILE_COLLECTIONS += "meta-beagle" | ||
8 | BBFILE_PATTERN_meta-beagle := "^${LAYERDIR}/" | ||
9 | BBFILE_PRIORITY_meta-beagle = "6" | ||
10 | |||
11 | LAYERSERIES_COMPAT_meta-beagle = "styhead walnascar" | ||
12 | |||
13 | LAYERDEPENDS_meta-beagle = " \ | ||
14 | meta-ti-bsp \ | ||
15 | " | ||