Bluetooth Application Port
- This topic has 1 reply, 2 voices, and was last updated 15 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
I am trying to port my Python-based Bluetooth application to to the CDP. However, there are a number of Python libraries I require that are not included in the standard Bitbake Python build and they don’t exist in the recipes either. I am new to Bitbake and don’t understand exactly how to include these libraries in the build.
What libraries are you interested in specifically?
Most python modules can be added using the “distutils” bitbake class. Recipes for such modules can be very simple, look at the python-pybluez_0.15.bb recipe for an example (located in openembedded/recipes/python).
The distutils class is described here:
http://docs.openembedded.org/usermanual/usermanual.html#distutils_class
The easiest way to learn is by looking at the other python module recipes.