-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kirill Kapranov <[email protected]>
- Loading branch information
Showing
3 changed files
with
66 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,43 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||
<html> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||
<title></title> | ||
<meta name="generator" content="LibreOffice 5.2.7.2 (Linux)"/> | ||
<meta name="created" content="00:00:00"/> | ||
<meta name="changed" content="00:00:00"/> | ||
<meta name="created" content="00:00:00"> | ||
<meta name="changed" content="00:00:00"> | ||
<style type="text/css"> | ||
h2.cjk { font-family: "Noto Sans CJK SC DemiLight" } | ||
h2.ctl { font-family: "FreeSans" } | ||
h3.cjk { font-family: "Noto Sans CJK SC DemiLight" } | ||
h3.ctl { font-family: "FreeSans" } | ||
</style> | ||
</head> | ||
<body lang="en-US" dir="ltr"> | ||
<h1>UCM-iMX8M-Mini Resources</h1> | ||
<h2 class="western">UCM-iMX8M-Mini Yocto Linux</h2> | ||
<p><a href="https://www.mediawiki.compulab.com/w/index.php?title=UCM-iMX8M-Mini_NXP_iMX8M-Mini_Yocto_Linux">Yocto | ||
Linux documentation</a> | ||
</p> | ||
<p><a href="https://www.mediawiki.compulab.com/w/index.php?title=Building_UCM-iMX8M-Mini_Yocto_Linux_images">Building | ||
Yocto images</a> | ||
</p> | ||
<h2 class="western">Other useful links</h2> | ||
<h2 class="western"><font face="Liberation Serif, serif"><font size="4" style="font-size: 14pt"><b>UCM-iMX8M-Mini</b></font></font></h2> | ||
<p><a href="https://www.compulab.com/products/computer-on-modules/ucm-imx8m-mini-nxp-i-mx-8m-mini-som-system-on-module-computer/">Product | ||
webpage</a> | ||
</p> | ||
<p><a href="https://www.compulab.com/products/computer-on-modules/ucm-imx8m-mini-nxp-i-mx-8m-mini-som-system-on-module-computer/#devres">Hardware | ||
and software resources</a> | ||
</p> | ||
<p><a href="https://www.mediawiki.compulab.com/w/index.php?title=UCM-iMX8M-Mini_NXP_iMX8M-Mini_SW_Resources">Product | ||
Wiki</a> | ||
</p> | ||
<h3 class="western"><br/> | ||
<br/> | ||
|
||
</h3> | ||
</body> | ||
</html> |
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,6 @@ | ||
This package contains Yocto Linux kernel for | ||
UCM-iMX8M-Mini, example file system image and | ||
miscellaneous utilities. | ||
|
||
The UCM-iMX8M-Mini Yocto Linux documentation can be found at CompuLab Wiki at: | ||
https://www.mediawiki.compulab.com/w/index.php?title=UCM-iMX8M-Mini_NXP_iMX8M-Mini_Yocto_Linux |
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,17 @@ | ||
SRC_URI += " \ | ||
file://README.txt \ | ||
file://README.html \ | ||
" | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
|
||
do_deploy:append() { | ||
cp ${WORKDIR}/README.txt ${DESTDIR}/ | ||
cp ${WORKDIR}/README.html ${DESTDIR}/development | ||
|
||
rm ${DESTDIR}/images/*.tar* || : | ||
|
||
cd ${DEPLOY_DIR_IMAGE}/.. | ||
tree --noreport ${RELEASE_NAME} -o ${RELEASE_NAME}.tree | ||
cd - | ||
} | ||
|