Date
1 - 2 of 2
Hello world recipe
yasminebenghozzi6@...
Hello everyone,
SO i ve been following this tutorial to be able to execute hello world on the raspberry pi, but i tried so much and still not working, please any help? e
I followed the tutorial from the Scripts et modules PYthon part: https://www.blaess.fr/christophe/yocto-lab/sequence-III-1/index.html#scripts-et-modules-python

SO i ve been following this tutorial to be able to execute hello world on the raspberry pi, but i tried so much and still not working, please any help? e
I followed the tutorial from the Scripts et modules PYthon part: https://www.blaess.fr/christophe/yocto-lab/sequence-III-1/index.html#scripts-et-modules-python
Bel Hadj Salem Talel <bhstalel@...>
It is clear that the build system cannot find anything that is providing 'python-hello' recipe.
Which means it parsed all layers in bblayers.conf and it didn't find any python-hello_*.bb file (the _* is the version)
It is mentioned in the tutorial that you provided that the recipe should be in meta-layer/recipes-custom/python-hello
So, you need to create that layer, follow:
bitbake-layers create-layer meta-custom
bitbake-layers add-layer meta-custom
Now, in that layer create folders: recipes-custom/python-hello, in that you should have:
1. another folder: files in that you put python-hello.py
2. python-hello.bb
the content of all of that is in the tutorial .
Which means it parsed all layers in bblayers.conf and it didn't find any python-hello_*.bb file (the _* is the version)
It is mentioned in the tutorial that you provided that the recipe should be in meta-layer/recipes-custom/python-hello
So, you need to create that layer, follow:
bitbake-layers create-layer meta-custom
bitbake-layers add-layer meta-custom
Now, in that layer create folders: recipes-custom/python-hello, in that you should have:
1. another folder: files in that you put python-hello.py
2. python-hello.bb
the content of all of that is in the tutorial .