|
do_compile, the basehash value changed from...
Hi, I am seeing the following error os-release.bb.do_compile, the basehash value changed from b66b4812ebcc321e17478af74dc47349 to 5a21625fe0f3f42b68a1b06498b804a9. The metadata is not deterministic an
Hi, I am seeing the following error os-release.bb.do_compile, the basehash value changed from b66b4812ebcc321e17478af74dc47349 to 5a21625fe0f3f42b68a1b06498b804a9. The metadata is not deterministic an
|
By
...
· #40345
·
|
|
question on how to include package to the SDK
Hi, I have package that require protobuf and the compiler protoc. I have included the following DEPENDS += " protobuf protobuf-native" and RDEPENDS_${PN} += " protobuf" The build works as intended the
Hi, I have package that require protobuf and the compiler protoc. I have included the following DEPENDS += " protobuf protobuf-native" and RDEPENDS_${PN} += " protobuf" The build works as intended the
|
By
...
· #40422
·
|
|
how to add pulseaudio
I am no expert but basically the DISTRO_FEATURES is normally used to inform recipes about what kind of feature you would like to have. A recipe based on the DISTRO_FEATURES can then include take actio
I am no expert but basically the DISTRO_FEATURES is normally used to inform recipes about what kind of feature you would like to have. A recipe based on the DISTRO_FEATURES can then include take actio
|
By
...
· #40424
·
|
|
[meta-raspberrypi] raspberrypi3 model B+ not booting
Hi, I am using the meta-raspberrypi layer in my build currently on the rocko branch. When powering on the rpi3 Model B+ the power led turns red then when the green led is turned on the red is turned o
Hi, I am using the meta-raspberrypi layer in my build currently on the rocko branch. When powering on the rpi3 Model B+ the power led turns red then when the green led is turned on the red is turned o
|
By
...
· #40459
·
|
|
[meta-raspberrypi] raspberrypi3 model B+ not booting
Hi, Thanks I will do that. But I have other layers that depend on the rocko of meta-raspberrypi so I believe I will have to use the rocko at some point but for testing I will try Morty. What is the re
Hi, Thanks I will do that. But I have other layers that depend on the rocko of meta-raspberrypi so I believe I will have to use the rocko at some point but for testing I will try Morty. What is the re
|
By
...
· #40468
·
|
|
[meta-raspberrypi] raspberrypi3 model B+ not booting
Hi, I can help out on testing if needed. I will try and do a clean build only using the layers required. BR Mans Zigher 2018-03-28 15:40 GMT+02:00 Paul Barker <pbarker@...>:
Hi, I can help out on testing if needed. I will try and do a clean build only using the layers required. BR Mans Zigher 2018-03-28 15:40 GMT+02:00 Paul Barker <pbarker@...>:
|
By
...
· #40473
·
|
|
What is the preferred way to add build data to os-release
Hi, I see a lot of systems making use of the /etc/os-release where they put in build information like sha, build numbers and version numbers. When doing that you will encounter basehash errors and tas
Hi, I see a lot of systems making use of the /etc/os-release where they put in build information like sha, build numbers and version numbers. When doing that you will encounter basehash errors and tas
|
By
...
· #40485
·
|
|
Is the a reason for adding the + to SRCPV?
Hi, I am having some problems with one of my recipes when using the SRCPV the get_srcrev is returning "AUTOINC+" + rev. This will cause problem in my compile because I am using dbus codegen and it loo
Hi, I am having some problems with one of my recipes when using the SRCPV the get_srcrev is returning "AUTOINC+" + rev. This will cause problem in my compile because I am using dbus codegen and it loo
|
By
...
· #40630
·
|
|
Is the a reason for adding the + to SRCPV?
I believe dbus codegen is the tools generating the code. Br Mans Zigher
I believe dbus codegen is the tools generating the code. Br Mans Zigher
|
By
...
· #40646
·
|
|
Is the a reason for adding the + to SRCPV?
Hi, Thanks for your help. It is a cmake project in which they have specified a custom command calling gdbus-codegen. It definitely looks like they are passing the absolute path to it thanks for the he
Hi, Thanks for your help. It is a cmake project in which they have specified a custom command calling gdbus-codegen. It definitely looks like they are passing the absolute path to it thanks for the he
|
By
...
· #40649
·
|
|
rocko cmake buld cstdlib:75:15: fatal error: stdlib.h: No such file or directory
Hi all, Have anyone experienced this error message before? I am not seeing this error when cross compiling using the sdk. I can see in the output that the -isystem is added which when googling the err
Hi all, Have anyone experienced this error message before? I am not seeing this error when cross compiling using the sdk. I can see in the output that the -isystem is added which when googling the err
|
By
...
· #40738
·
|
|
rocko cmake buld cstdlib:75:15: fatal error: stdlib.h: No such file or directory
Hi, I actually managed to locate the problem to the cmake project where it added include_directories(SYSTEM which then is translated into -isystem this call was not included when building in the SDK s
Hi, I actually managed to locate the problem to the cmake project where it added include_directories(SYSTEM which then is translated into -isystem this call was not included when building in the SDK s
|
By
...
· #40745
·
|
|
rocko cmake buld cstdlib:75:15: fatal error: stdlib.h: No such file or directory
Hi Dennis, This makes me a bot confused in cmake_do_configure we have -DCMAKE_NO_SYSTEM_FROM_IMPORTED=1 \ ${EXTRA_OECMAKE} \ -Wno-dev I would think that I am using this cmake_do_configure so then the
Hi Dennis, This makes me a bot confused in cmake_do_configure we have -DCMAKE_NO_SYSTEM_FROM_IMPORTED=1 \ ${EXTRA_OECMAKE} \ -Wno-dev I would think that I am using this cmake_do_configure so then the
|
By
...
· #40747
·
|
|
rocko cmake buld cstdlib:75:15: fatal error: stdlib.h: No such file or directory
Hi, I am building with the SDK (not extensible) but it is also built as a recipe when building an image. The recipe is inheriting cmake but it is only in the image build that I am experiencing this pr
Hi, I am building with the SDK (not extensible) but it is also built as a recipe when building an image. The recipe is inheriting cmake but it is only in the image build that I am experiencing this pr
|
By
...
· #40769
·
|
|
busybox: adding task to run before do_configure
Hi, I have created this simple class file python do_busybox_foo() { bb.warn("BUSYBOX: foo task!") } addtask busybox_foo after do_configure before do_compile do_busybox_foo[deptask] += "do_configure" d
Hi, I have created this simple class file python do_busybox_foo() { bb.warn("BUSYBOX: foo task!") } addtask busybox_foo after do_configure before do_compile do_busybox_foo[deptask] += "do_configure" d
|
By
...
· #41524
·
|
|
busybox: adding task to run before do_configure
Hi, Thanks for your answer. So this is a simplified implementation so you are right. I have based my implementation on a class used for kernel you can find the original implementation here https://git
Hi, Thanks for your answer. So this is a simplified implementation so you are right. I have based my implementation on a class used for kernel you can find the original implementation here https://git
|
By
...
· #41533
·
|
|
[Question]: do_configure fail if cmake project is making use of ExternalProject
Hi, I have a cmake project that is making use of ExternalProject_Add. The external project will make use of git clone to pull down the project. The problem that I am seeing is that the do_configure wi
Hi, I have a cmake project that is making use of ExternalProject_Add. The external project will make use of git clone to pull down the project. The problem that I am seeing is that the do_configure wi
|
By
...
· #42393
·
|
|
[Question]: do_configure fail if cmake project is making use of ExternalProject
Hi, Thanks for your reply. A colleague found OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH" and it seems to work. Do you have any comment using this? Br Måns Zigher
Hi, Thanks for your reply. A colleague found OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH" and it seems to work. Do you have any comment using this? Br Måns Zigher
|
By
...
· #42400
·
|
|
[poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}
Hi, I have been struggling with a problem where I need to create a package in a recipe and set already-stripped for that package. The package in question is not the the default one so I am trying to s
Hi, I have been struggling with a problem where I need to create a package in a recipe and set already-stripped for that package. The package in question is not the the default one so I am trying to s
|
By
...
· #42740
·
|
|
[poky][meta] already-stripped ignore if set for any other package then INSANE_SKIP_${PN}
Hi, Sorry I see now that there is a typo. What I mean is that in the default package I am not suing INSANE_SKIP but for packag1 I need already-stripped INSANE_SKIP_${PN}-package1 = " \ dev-so \ alread
Hi, Sorry I see now that there is a typo. What I mean is that in the default package I am not suing INSANE_SKIP but for packag1 I need already-stripped INSANE_SKIP_${PN}-package1 = " \ dev-so \ alread
|
By
...
· #42754
·
|