-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial manifest for dey-4.0 (Kirkstone)
Signed-off-by: Javier Viguera <[email protected]>
- Loading branch information
0 parents
commit 05d083c
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
Digi Embedded Yocto (DEY) manifest | ||
================================== | ||
|
||
This repository contains the manifest files for the Digi Embedded Yocto | ||
distribution for [Digi's Embedded modules](https://www.digi.com/products/embedded-systems). | ||
|
||
Installing Digi Embedded Yocto | ||
------------------------------ | ||
|
||
To download Digi Embedded Yocto, you need the repo tool. | ||
|
||
Follow these steps to install Digi Embedded Yocto: | ||
|
||
1. Download repo to a directory within your path and add execution permissions. | ||
|
||
``` | ||
$ sudo curl -o /usr/local/bin/repo http://commondatastorage.googleapis.com/git-repo-downloads/repo | ||
$ sudo chmod a+x /usr/local/bin/repo | ||
``` | ||
|
||
2. Create an installation folder with user write permissions; for example, /usr/local/dey-4.0. Navigate to that folder: | ||
|
||
``` | ||
$ sudo install -o <your-user> -g <your-group> -d /usr/local/dey-4.0 | ||
$ cd /usr/local/dey-4.0 | ||
``` | ||
|
||
Note: You can get your primary user and group using the id command. | ||
|
||
3. Use repo to download Digi Embedded Yocto. | ||
|
||
``` | ||
$ repo init -u https://github.com/digi-embedded/dey-manifest.git -b kirkstone | ||
$ repo sync -j8 --no-repo-verify | ||
``` | ||
|
||
More information about [Digi Embedded Yocto](https://github.com/digi-embedded/meta-digi). | ||
|
||
License | ||
------- | ||
Copyright 2022, Digi International Inc. | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<manifest> | ||
<default sync-j="8" revision="kirkstone"/> | ||
<remote name="digi" fetch="https://github.com/digi-embedded"/> | ||
<remote name="fsl" fetch="https://github.com/Freescale"/> | ||
<remote name="igl" fetch="https://github.com/Igalia"/> | ||
<remote name="nxp" fetch="https://source.codeaurora.org/external/imx"/> | ||
<remote name="qt5" fetch="https://github.com/meta-qt5"/> | ||
<remote name="swu" fetch="https://github.com/sbabic"/> | ||
<remote name="stm" fetch="https://github.com/STMicroelectronics"/> | ||
<remote name="timesys" fetch="https://github.com/TimesysGit"/> | ||
<remote name="oe" fetch="https://git.openembedded.org"/> | ||
<remote name="yocto" fetch="https://git.yoctoproject.org"/> | ||
|
||
<project name="meta-digi.git" path="sources/meta-digi" remote="digi" revision="kirkstone"> | ||
<copyfile src="sdk/mkproject.sh" dest="mkproject.sh"/> | ||
</project> | ||
<project name="meta-freescale.git" path="sources/meta-freescale" remote="yocto" revision="kirkstone"/> | ||
<project name="meta-fsl-demos.git" path="sources/meta-fsl-demos" remote="fsl" revision="kirkstone"/> | ||
<project name="meta-imx.git" path="sources/meta-imx" remote="nxp" revision="kirkstone-5.15.32-2.0.0"/> | ||
<project name="meta-st-stm32mp.git" path="sources/meta-st-stm32mp" remote="stm" revision="kirkstone"/> | ||
<project name="meta-openembedded" path="sources/meta-openembedded" remote="oe" revision="kirkstone"/> | ||
<project name="meta-qt5.git" path="sources/meta-qt5" remote="qt5" revision="kirkstone"/> | ||
<project name="meta-selinux.git" path="sources/meta-selinux" remote="yocto" revision="kirkstone"/> | ||
<project name="meta-swupdate.git" path="sources/meta-swupdate" remote="swu" revision="kirkstone"/> | ||
<project name="meta-timesys.git" path="sources/meta-timesys" remote="timesys" revision="kirkstone"/> | ||
<project name="meta-webkit.git" path="sources/meta-webkit" remote="igl" revision="main"/> | ||
<project name="poky.git" path="sources/poky" remote="yocto" revision="kirkstone"/> | ||
</manifest> |