I added the libgpiod v1.4.1 recipe from the meta-openembedded zeus branch to my custom image. The command line gpio tools are working successfully. Now I would like to add the python3 bindings.
To enable the bindings, I changed the PACKAGECONFIG line in the bb file to:
I fixed this error by adding the following to the bb file:
do_install_append () {
rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/*.a
}
Unfortunately that does not install the python bindings to libgpiod in the image. What can I do to install the bindings? I can use the command line gpio tools, but I would like to use the python bindings if possible.