I have a digi connectcore 8m nano SOM and I am trying to make a static eth0 configuration in yocto for the same. Following the instructions as specified in the official documentation
(https://www.digi.com/resources/documentation/digidocs/embedded/dey/3.0/cc8mnano/yocto_t_configure-ne...)
I have added the following lines in my local.conf
ETH0_MODE = "static"
ETH0_STATIC_IP = "192.168.0.2" ETH0_STATIC_NETMASK = "255.255.255.0" ETH0_STATIC_GATEWAY = "192.168.0.255"
During building the image, the following error shows up
| readelf: Error: '/usr/lib/libjansson.so': No such file
| configure: error: Unable to locate the Jansson library
| WARNING: exit code 1 from a shell command.
Inspecting a few files, networkmanager_%.bb depends on the jansson package (libjansson.so), however, there was no such file found in the sysroot-native.
Am I missing something here in the setup? or do I need to do some additional setup during the build?
TIA.
Please refer digi documents to check your steps