Q: I am looking for information on how to add the command cURL to the SoM.
A: Please build your own Yocto images following the link:
https://www.digi.com/resources/documentation/digidocs/embedded/dey/3.0/cc6ul/yocto_t_install-dey
Add the following to your conf/local.conf
IMAGE_INSTALL_append = " curl"
or
IMAGE_INSTALL_append += "curl"
Please note the space in front of curl in the first instance.
You might also need " curl-dev" depending on what you are doing.
next run "bitbake" to generate new images/packages including cURL.
reference: https://wiki.yoctoproject.org/wiki/Cookbook:Example:Adding_packages_to_your_OS_image
Last updated:
Jan 01, 2024