# meta-real-time-edge **Repository Path**: cloudlhc/meta-real-time-edge ## Basic Information - **Project Name**: meta-real-time-edge - **Description**: Real-Time-Edge-v3.2-202507 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-04 - **Last Updated**: 2026-03-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Real-time Edge Software Project v3.3 Release ====================================================== Real-time Edge software Yocto layer, provides support to build NXP's Real-time Edge image, both for i.MX and QorIQ platforms. ## Quick Start Guide See the Real-time Edge Software Yocto Project User's Guide for instructions on installing repo. ### Install the `repo` utility (only need to do this once) To get the Real-time Edge environment you need to have `repo` installed. This 'repo' is used to download manifests for Real-time Edge releases. ``` $ mkdir ~/bin $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo $ chmod a+x ~/bin/repo $ export PATH=${PATH}:~/bin ``` ### Download the specific Real-time Edge Environment ``` $ mkdir yocto-real-time-edge $ cd yocto-real-time-edge $ repo init -u https://github.com/nxp-real-time-edge-sw/yocto-real-time-edge.git -b -m $ repo sync ``` #### Examples To download the Real-time Edge 3.3 release ``` $ mkdir yocto-real-time-edge $ cd yocto-real-time-edge $ repo init -u https://github.com/nxp-real-time-edge-sw/yocto-real-time-edge.git -b real-time-edge-walnascar -m real-time-edge-3.3.0.xml $ repo sync ``` ### Setup build project ``` $ MACHINE= DISTRO= source ./real-time-edge-setup-env.sh -b bld- ``` Machine: - imx6ull14x14evk - imx8dxlb0-lpddr4-evk - imx8mm-lpddr4-evk - imx8mp-lpddr4-evk - imx8mp-lpddr4-frdm - imx91-11x11-lpddr4-evk - imx91-11x11-lpddr4-frdm - imx91-11x11-lpddr4-frdm-imx91s - imx91-9x9-lpddr4-qsb - imx93evk - imx93-9x9-lpddr4-qsb - imx93-11x11-lpddr4x-frdm - imx93-14x14-lpddr4x-evk - imx943-19x19-lpddr4-evk - imx943-19x19-lpddr5-evk - imx943-15x15-lpddr4-evk - imx95-19x19-lpddr5-evk - imx95-15x15-lpddr4x-evk - ls1028ardb - ls1043ardb - ls1046ardb - lx2160ardb-rev2 Distro: - nxp-real-time-edge – The regular image including Real-time Networking, Real-time System, and Industrial packages. - nxp-real-time-edge-baremetal – The baremetal image (some boards do not support this distro). - nxp-real-time-edge-emmc – The emmc boot image (some boards do not support this distro). - nxp-real-time-edge-plc – The PLC image (some boards do not support this distro). Name: - identical string for the build project #### Examples ``` $ DISTRO=nxp-real-time-edge MACHINE=imx8mp-lpddr4-evk source real-time-edge-setup-env.sh -b build-imx8mpevk-real-time-edge ``` ### Build an image ``` $ bitbake ``` Image: - nxp-image-real-time-edge: demo image for all supported machines. - nxp-image-real-time-edge-plc: The macro image to support PLC. #### Examples ``` $ bitbake nxp-image-real-time-edge ```