Difference between revisions of "AIMLinux/AddOn/DeviceOn"
From ESS-WIKI
Daniel.hung (talk | contribs) |
Daniel.hung (talk | contribs) |
||
Line 10: | Line 10: | ||
== <span style="color:#0070c0">Build Instruction</span> == | == <span style="color:#0070c0">Build Instruction</span> == | ||
+ | |||
+ | Make sure you have set up SDK toolchain environment, before start building RMM EI agent. | ||
+ | |||
+ | <span style="color:#00AA00"># Get source</span> | ||
+ | git clone [http://advgitlab.eastasia.cloudapp.azure.com/EI-PaaS-RMM/RMM-EI-Agent.git http://advgitlab.eastasia.cloudapp.azure.com/EI-PaaS-RMM/RMM-EI-Agent.git] | ||
+ | cd RMM-EI-Agent | ||
+ | |||
+ | <span style="color:#00AA00"># Choose one for your platform</span> | ||
+ | source risc-env fsl imx6 yocto 2.1 | ||
+ | source risc-env fsl imx8 yocto | ||
+ | source risc-env qualcomm dragon yocto | ||
+ | source risc-env ti am335x yocto 2.4 | ||
+ | source risc-env rk 3399 debian | ||
+ | source risc-env rk 3288 debian | ||
+ | |||
+ | <span style="color:#00AA00"># Build</span> | ||
+ | make clean | ||
+ | cd build/Standard | ||
+ | ./autobuild.sh | ||
== <span style="color:#0070c0">Bundle Mechanism</span> == | == <span style="color:#0070c0">Bundle Mechanism</span> == |
Revision as of 07:34, 24 September 2019
This section describes the information about DeviceOn on RISC platform.
Contents
DeviceOn
Requirements for Build Environment
To cross-compile DeviceOn agent, you have to install dependencies into SDK toolchain.
Please refer to packagegroup-wise-paas.bb and sdk.inc for details. These two files are used on Yocto to generate suitable image & toolchain for DeviceOn.
Build Instruction
Make sure you have set up SDK toolchain environment, before start building RMM EI agent.
# Get source git clone http://advgitlab.eastasia.cloudapp.azure.com/EI-PaaS-RMM/RMM-EI-Agent.git cd RMM-EI-Agent # Choose one for your platform source risc-env fsl imx6 yocto 2.1 source risc-env fsl imx8 yocto source risc-env qualcomm dragon yocto source risc-env ti am335x yocto 2.4 source risc-env rk 3399 debian source risc-env rk 3288 debian # Build make clean cd build/Standard ./autobuild.sh