Hello All,
I have iMX8M Mini EVK.
I did setup a Yocto toolchain for version L5.4.24_2.1.0 on my Ubuntu 18.04 LTS system.
I did successfully "bitbake imx-image-multimedia"
Need to add support for nodejs.
Would you please refer a link to do that?
How to include latest nodejs?
Regards,
Prashant
Hello prashant,
You may add a layer to an image by adding following line to the conf/local.conf file inside the build directory, and then baking the image.
IMAGE_INSTALL_append = “ nodejs”
Whenever you want to see which packages are available on the BSP you can run:
bitbake -s
Regards