diff options
author | Christian Hemp <c.hemp@phytec.de> | 2018-11-30 16:03:22 +0100 |
---|---|---|
committer | Stefan Müller-Klieser <s.mueller-klieser@phytec.de> | 2018-12-04 13:32:07 +0100 |
commit | 17da524332f459f7526fc7d683602c7ec52a25f2 (patch) | |
tree | d86b104223402661ab067271c7ba89136dc945d9 | |
parent | 8cc1cfc8d67ae1869d4d7c955cf55c12e5d6a514 (diff) | |
download | meta-phytec-17da524332f459f7526fc7d683602c7ec52a25f2.tar.bz2 meta-phytec-17da524332f459f7526fc7d683602c7ec52a25f2.zip |
scripts: Add init script for i.MX8
Added a init script for the i.MX8.
This is basically the same like the i.MX8M. Only changed the MACHINE.
The solution is only for the ALPHA Releases. We have to rework this for
the final Releases.
Signed-off-by: Christian Hemp <c.hemp@phytec.de>
Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de>
-rwxr-xr-x | scripts/init-imx8 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/init-imx8 b/scripts/init-imx8 new file mode 100755 index 0000000..9814f14 --- /dev/null +++ b/scripts/init-imx8 @@ -0,0 +1,15 @@ +#!/bin/sh +PHYLINUX_API_VERSION="2" + +echo "" +echo "Before you start your work, please check your build/conf/local.conf for" +echo "host specific configuration. Check the documentation especially for:" +echo " - proxy settings" +echo " - DL_DIR" +echo " - SSTATE_DIR" +echo "" +echo "To create a new Yocto build directory:" +echo "MACHINE=phycore-imx8-1 DISTRO=fsl-imx-wayland source fsl-setup-release.sh" +echo "" +echo "To use an existing Yocto build directory:" +echo "source setup-environment build" |