Re: Problems building eSDK: Exception: variable BBFILES references itself!
Richard Purdie
On Wed, 2022-02-09 at 20:19 +0000, Bryan Evenson wrote:
Richard,I suspect the eSDK adds a workspace for the devtool and similar workflows so-----Original Message-----This is odd. I removed the workspace from my local bblayers.conf. I executed: that piece may be normal and perhaps it was conflicting with your existing workspace? I have to admit I don't remember if it does that or not offhand but it could. If that were the case, it is sounding like the conflict may be with some other layer instead. Cheers, Richard
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Bryan Evenson
Richard,
toggle quoted messageShow quoted text
-----Original Message-----This is odd. I removed the workspace from my local bblayers.conf. I executed: bitbake -c cleansstate image bitbake image bitbake image -c populate_sdk_ext I got the same error message as before. Also, the bblayers.conf in the tmp-sdk-ext directory still contains the workspace directory in the BBLAYERS list. I then switched and built core-image-minimal the same way, and I'm getting the same error. I checked BBLAYERS in bitbake -e for core-image-minimal, and the workspace directory is not listed. I don’t know how populate_sdk_ext is pulling the workspace directory into BBLAYERS. Any ideas? Thanks, Bryan
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Richard Purdie
On Wed, 2022-02-09 at 19:36 +0000, Bryan Evenson wrote:
Richard,I'm now wondering what happens if you remove-----Original Message-----I think I found what you were looking for under the image tmp working directory at sdk-ext/image/temp-renamed-sdk/conf/bblayers.conf. Here's a comparison of my original bblayers.conf in my tmp directory and the generated bblayers.conf for the eSDK. I confirmed that the layers directory is present and contains all the layers as listed in the generated bblayers.conf. <my_home_dir>/poky/poky-build/workspace \ since I suspect your local workspace probably doesn't make sense in the eSDK? Could you try temporarily removing that and see if that helps? The BBFILES entry in one of these layer.conf files is probably causing some issue but I can't easily know which one. You could remove some of the other layers to try and see if you identify where the issue is from too? Cheers, Richard
|
|
Re: Error: Transaction check error: while doing do_rootfs task
Sourabh Hegde
Hello Khem,
Doing "bitbake -e core-image-swupdate | grep ^INIT_MANAGER=" shows INIT_MANAGER="none". And "bitbake -e core-image-swupdate | grep ^DISTRO_FEATURES=" shows DISTRO_FEATURES="acl alsa argp bluetooth ext2 ipv4 ipv6 largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 vfat largefile opengl ptest multiarch wayland vulkan systemd wifi systemd pulseaudio sysvinit gobject-introspection-data ldconfig". I don't understand why these is both systemd and sysvinit. In the core-image-swupdate I have mentioned: DISTRO_FEATURES_append = " systemd" Can you please let me know how can I check if the recipe has dependency on sysvinit or not? Thanks in advance
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Bryan Evenson
Richard,
toggle quoted messageShow quoted text
-----Original Message-----I think I found what you were looking for under the image tmp working directory at sdk-ext/image/temp-renamed-sdk/conf/bblayers.conf. Here's a comparison of my original bblayers.conf in my tmp directory and the generated bblayers.conf for the eSDK. I confirmed that the layers directory is present and contains all the layers as listed in the generated bblayers.conf. ######################################################################### # # Contents of my original bblayers.conf # ######################################################################### # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # changes incompatibly POKY_BBLAYERS_CONF_VERSION = "2" BBPATH = "${TOPDIR}" BBFILES ?= "" BBLAYERS ?= " \ <my_home_dir>/poky/<my_custom_layer1> \ <my_home_dir>/poky/<my_custom_layer2> \ <my_home_dir>/poky/meta-bacnet \ <my_home_dir>/poky/meta-atmel \ <my_home_dir>/poky/meta \ <my_home_dir>/poky/meta-poky \ <my_home_dir>/poky/meta-yocto-bsp \ <my_home_dir>/poky/meta-openembedded/meta-oe \ <my_home_dir>/poky/meta-openembedded/meta-networking \ <my_home_dir>/poky/meta-openembedded/meta-python \ <my_home_dir>/poky/poky-build/workspace \ " BBLAYERS_NON_REMOVABLE ?= " \ <my_home_dir>/poky/meta \ <my_home_dir>/poky/meta-poky \ " ######################################################################### # # Contents of my <img_tmp_work_dir>/sdk-ext/image/tmp-renamed-sdk/conf/bblayers.conf # ######################################################################### # WARNING: this configuration has been automatically generated and in # most cases should not be edited. If you need more flexibility than # this configuration provides, it is strongly suggested that you set # up a proper instance of the full build system and use that instead. BBPATH = "${TOPDIR}" SDKBASEMETAPATH = "${TOPDIR}" BBLAYERS := " \ ${SDKBASEMETAPATH}/layers/poky/<my_custom_layer1> \ ${SDKBASEMETAPATH}/layers/poky/<my_custom_layer2> \ ${SDKBASEMETAPATH}/layers/poky/meta-bacnet \ ${SDKBASEMETAPATH}/layers/poky/meta-atmel \ ${SDKBASEMETAPATH}/layers/poky/meta \ ${SDKBASEMETAPATH}/layers/poky/meta-poky \ ${SDKBASEMETAPATH}/layers/poky/meta-yocto-bsp \ ${SDKBASEMETAPATH}/layers/poky/meta-openembedded/meta-oe \ ${SDKBASEMETAPATH}/layers/poky/meta-openembedded/meta-networking \ ${SDKBASEMETAPATH}/layers/poky/meta-openembedded/meta-python \ ${SDKBASEMETAPATH}/workspace \ " Let me know if anything else would be helpful for diagnosing this issue. Thanks, Bryan Cheers,
|
|
Re: Maintaining ABI Compatibility for LTS branch
Richard Purdie
On Wed, 2022-02-09 at 18:41 +0000, Richard Purdie wrote:
Sorry, I'm getting confused here with earlier work Michael Ho did at BMW. The links here: https://lists.yoctoproject.org/g/yocto/message/52650 https://github.com/bmwcarit/meta-abicompat are the revised version from last year which *does* hook into hash equivalence. I'm getting two things confused, sorry. The nice thing about the layer above is that it is a standalone layer, we don't have to merge it in order to use it. This shows the power of the new hash equivalence code as it is a plugin to it. We may consider merging it at some point but there is less of a pressing need and we need time to experiment with it. At this point it is a proof of concept and doesn't solve the ABI problem you're describing in the original email. Sorry about any confusion. The abidw recipe could be useful to your ABI issue. Cheers, Richard
|
|
Re: Maintaining ABI Compatibility for LTS branch
Sinan Kaya <okaya@...>
On 2/9/2022 1:41 PM, Richard Purdie wrote:
That's true, this will require engagement from the community. Tool couldYou're after our LTS to maintain ABI. In order to do that we need help, not justThere are lots of levels it could be implemented at but it is something someoneWhat would be the minimum acceptable solution with the least investment? take few iterations to perfect. Until then, I expect tool owner to be responsible for fixing these bugs. Once stability is reached, it becomes community maintained. If the tool owner doesn't maintain and community has no interest, tool dies and gets reverted. It is as simple as any open source engagement. When stability is established, each code contributor to LTS would be subject to addressing issues found before they get merged. The idea of "least investment" sends shivers down my spine since it sounds likeIt depends on your taste. I believe in smaller improvements as opposed to throwing a big project to you that no-one will use it. Everyone has different needs. We need to find the common ones. That's why, I'm asking if there is an existing tool that works for large part of the community accepting that there will be some folks that won't have their needs addressed. I'm interested in revisiting the tooling discussion and have these gaps addressed for the biggest audience so that we can have something to build upon. Anyway, my point is there is more to this than just a patch. We have variousNoted. Hopefully, things will be not that volatile for the LTS branch and tool would actually help the maintainer. In an ideal world, change needs to be stopped before that happens and have the patch author address it similar to how you monitor build pipelines. https://lists.yoctoproject.org/g/yocto/topic/85279259?p=,,,20,0,0,0::recentpostdate/sticky,,,20,2,160,85279259Our team has posted a solution. BMW folks posted a solution.Can you remind me of your team's please? This was an intern project from last summer that we are interested in expanding coverage. The BMW one is about hash equivalence so wouldn't help your ABI output problemOK, I didn't know the story behind the change. Got it.Could we take the version from BMW folks, merge and have the next personSee above on the BMW version. I'm a little worried you're suggesting merging Sure, let's find out what everyone is doing.or vice versa? or as Ross said some other work?I have to admit I can't remember what the conclusion was on your team's version
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Richard Purdie
On Wed, 2022-02-09 at 18:10 +0000, Bryan Evenson wrote:
Richard,Thanks, I'm not seeing anything too odd there. I guess next we need to see the-----Original Message-----Here's what I was able to pull from bitbake -e. I've included details for bblayers.conf that the code is building into the eSDK and compare it to your original conf/bblayer.conf. The generated file should be in the eSDK image directory somewhere, I'm not able to look up the exact path right now. Let me know if you can't find it. Lets see if the two bblayers.conf files look different and introduce some issue. Cheers, Richard
|
|
Re: Maintaining ABI Compatibility for LTS branch
Richard Purdie
On Wed, 2022-02-09 at 13:15 -0500, Sinan Kaya wrote:
On 2/9/2022 11:42 AM, Richard Purdie wrote:You're after our LTS to maintain ABI. In order to do that we need help, not justThere are two reasons people are interested:What would be the minimum acceptable solution with the least investment? with patches generating some output, but in day to day running of the project, i.e. help comparing output before and after changes. Whenever a patch is submitted which breaks this, it will need attention and help some someone to explain to that submitter what the issue, why it is important and hints on how to fix it. The idea of "least investment" sends shivers down my spine since it sounds like you want to do the absolute bare minimum to have this happen, rather than a more community oriented approach. Anyway, my point is there is more to this than just a patch. We have various kinds of build output already and reports on test regressions - nobody helps with them. I need some kind of a sign that ABI would be different and there are people able to help with review on an ongoing basis, else it will just be something else I and a small number of others become overloaded with. Our team has posted a solution. BMW folks posted a solution.Can you remind me of your team's please? The BMW one is about hash equivalence so wouldn't help your ABI output problem with the LTS. From what I remember, it predates hash equivalence and the project needed a generic equivalance mechanism complete with server done at the runqueue level in bitbake. This has now happened so we could revisit the idea of what is in that layer but translating it to a hash equivalence plugin. I'd also add that even with hash equivalence done well like we ended up with, we have only two people interested/able to work on bugs with it, the author and myself. For a key component of the system, this worries me a lot. Adding more complexity without maintainer support isn't going to help anyone. Could we take the version from BMW folks, merge and have the next personSee above on the BMW version. I'm a little worried you're suggesting merging something which doesn't actually do what you need/want :(. or vice versa? or as Ross said some other work?I have to admit I can't remember what the conclusion was on your team's version but if you remind me of the patches I can try and remember. This is a bigger problem than just patches though sadly. Cheers, Richard
|
|
Re: Maintaining ABI Compatibility for LTS branch
Sinan Kaya <okaya@...>
On 2/9/2022 11:42 AM, Richard Purdie wrote:
There are two reasons people are interested:What would be the minimum acceptable solution with the least investment? in other words, do we have a list of requirements? Our team has posted a solution. BMW folks posted a solution. None of them got merged. Could we take the version from BMW folks, merge and have the next person add new features where it doesn't satisfy requirements? or vice versa? or as Ross said some other work? or none of the solutions are acceptable?
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Bryan Evenson
Richard,
toggle quoted messageShow quoted text
-----Original Message-----Here's what I was able to pull from bitbake -e. I've included details for both BBFILES and BBFILES_DYNAMIC. Let me know if anything else would be helpful. Thanks, Bryan # $BBFILES [24 operations] # set? <my_home_dir>/poky/poky-build/conf/bblayers.conf:6 # "" # immediate <my_home_dir>/poky/<my_custom_layer1>/conf/layer.conf:6 # "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/<my_custom_layer2>/conf/layer.conf:5 # "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend" # append <my_home_dir>/poky/meta-bacnet/conf/layer.conf:6 # "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/meta-atmel/conf/layer.conf:5 # "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend" # append <my_home_dir>/poky/meta/conf/layer.conf:4 # "${LAYERDIR}/recipes-*/*/*.bb" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb" # append <my_home_dir>/poky/meta-poky/conf/layer.conf:6 # "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/meta-yocto-bsp/conf/layer.conf:6 # "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/meta-openembedded/meta-oe/conf/layer.conf:15 # "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/meta-openembedded/meta-networking/conf/layer.conf:6 # "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend" # append <my_home_dir>/poky/meta-openembedded/meta-python/conf/layer.conf:5 # "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend" # append <my_home_dir>/poky/poky-build/workspace/conf/layer.conf:4 # "${LAYERDIR}/recipes/*/*.bb ${LAYERDIR}/appends/*.bbappend" # set data_smart.py:945 [expandVarref] # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/workspace/recipes/*/*.bb <my_home_dir>/poky/poky-build/workspace/appends/*.bbappend" # append cookerdata.py:401 [parseConfigurationFiles] # " <my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb" # set <my_home_dir>/poky/meta/conf/documentation.conf:90 # [doc] "List of recipe files used by BitBake to build software." # pre-expansion value: # " <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/workspace/recipes/*/*.bb <my_home_dir>/poky/poky-build/workspace/appends/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb" BBFILES=" <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/workspace/recipes/*/*.bb <my_home_dir>/poky/poky-build/workspace/appends/*.bbappend <my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb" # # $BBFILES_DYNAMIC [4 operations] # append <my_home_dir>/poky/meta-atmel/conf/layer.conf:21 # " meta-aws:${LAYERDIR}/dynamic-layers/aws-layer/*/*/*.bb meta-aws:${LAYERDIR}/dynamic-layers/aws-layer/*/*/*.bbappend " # set data_smart.py:945 [expandVarref] # " meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bb meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bbappend " # append <my_home_dir>/poky/meta-openembedded/meta-oe/conf/layer.conf:31 # " meta-python:${LAYERDIR}/dynamic-layers/meta-python/recipes-*/*/*.bb perl-layer:${LAYERDIR}/dynamic-layers/perl-layer/recipes-*/*/*.bb " # set data_smart.py:945 [expandVarref] # " meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bb meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bbappend meta-python:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb perl-layer:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/perl-layer/recipes-*/*/*.bb " # pre-expansion value: # " meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bb meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bbappend meta-python:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb perl-layer:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/perl-layer/recipes-*/*/*.bb " BBFILES_DYNAMIC=" meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bb meta-aws:<my_home_dir>/poky/meta-atmel/dynamic-layers/aws-layer/*/*/*.bbappend meta-python:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb perl-layer:<my_home_dir>/poky/meta-openembedded/meta-oe/dynamic-layers/perl-layer/recipes-*/*/*.bb "
|
|
Re: Maintaining ABI Compatibility for LTS branch
On Wed, Feb 9, 2022 at 8:37 AM Steve Sakoman <steve@...> wrote:
I think its not that LTS itself but also upgrade from LTS to LTS or other newer versions, it wouuld be good to have this tool and prerhaps a list of API/ABI changes to help migration/upgrade to newer LTS releases.
|
|
Re: Error: Transaction check error: while doing do_rootfs task
I think core-image-swupdate.bb is adding sysvinit explicitly, please
toggle quoted messageShow quoted text
remove it from that.
On Wed, Feb 9, 2022 at 6:54 AM Sourabh Hegde <hrsourabh011@...> wrote:
|
|
Re: [meta-raspberrypi][PATCH] gstreamer1.0-plugins-good: Update bbappend to 1.20
thanks for patch. Can you create a PR on github please ?
toggle quoted messageShow quoted text
On Wed, Feb 9, 2022 at 7:17 AM An?bal Lim?n <limon.anibal@...> wrote:
|
|
Re: Problems building eSDK: Exception: variable BBFILES references itself!
Richard Purdie
On Wed, 2022-02-09 at 16:51 +0000, Bryan Evenson wrote:
All,Could you share what bitbake -e shows BBFILES as being set to? The variable history from that command for the variable may also be helpful. There has to be something different to how you're setting it compared to what we test on the autobuilder. Cheers, Richard
|
|
Problems building eSDK: Exception: variable BBFILES references itself!
Bryan Evenson
All,
I've used the SDK in the past and want to start using the eSDK for my project. I'm on the dunfell branch. I'm trying to build the eSDK for my image by calling: bitbake <my_image_name> -c populate_sdk_ext The sdk generation fails with the error in the subject. I haven't been able to find any documentation on what this means or how to fix it. I've tried deleting my tmp directory and running cleansstate on my image and I still get the same error. I've also tried generating the eSDK for core-image-minimal and I have the same error. I can generate the SDK successfully, just not the eSDK. I have copied more of the build output below if it helps. Note that I have replaced some text that I'm paranoid about publishing on the internet; the modified text is enclosed with <>. Does anyone have any insight as to why the eSDK build is failing? Thanks, Bryan NOTE: Running intercept scripts: NOTE: Executing buildhistory_list_installed_sdk_host ... DEBUG: Executing python function buildhistory_list_installed_sdk_host DEBUG: Python function buildhistory_list_installed_sdk_host finished NOTE: Executing buildhistory_get_sdk_installed_host ... DEBUG: Executing shell function buildhistory_get_sdk_installed_host DEBUG: Shell function buildhistory_get_sdk_installed_host finished NOTE: Executing copy_buildsystem ... DEBUG: Executing python function copy_buildsystem NOTE: Excluding local workspace layer <my_home_dir>/poky/poky-build/workspace from extensible SDK NOTE: Generating sstate task list... ERROR: Failed to generate filtered task list for extensible SDK: ### Shell environment set up for builds. ### You can now run 'bitbake <target>' Common targets are: core-image-minimal core-image-sato meta-toolchain meta-ide-support You can also run generated qemu images with a command like 'runqemu qemux86' Other commonly useful commands are: - 'devtool' and 'recipetool' handle common recipe tasks - 'bitbake-layers' handles common layer tasks - 'oe-pkgdata-util' handles common target package tasks ERROR: bitbake failed: ERROR: Command execution failed: Traceback (most recent call last): File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 401, in expandWithRefs s = __expand_var_regexp__.sub(varparse.var_sub, s) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 96, in var_sub raise Exception("variable %s references itself!" % self.varname) Exception: variable BBFILES references itself! The above exception was the direct cause of the following exception: Traceback (most recent call last): File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/command.py", line 107, in runAsyncCommand self.cooker.updateCache() File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/cooker.py", line 1558, in updateCache (filelist, masked, searchdirs) = self.collection.collect_bbfiles(self.data, self.data) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/cooker.py", line 1729, in collect_bbfiles files = (config.getVar( "BBFILES") or "").split() File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 589, in getVar return self.getVarFlag(var, "_content", expand, noweakdefault, parsing) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 780, in getVarFlag parser = self.expandWithRefs(value, cachename) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 418, in expandWithRefs raise ExpansionError(varname, s, exc).with_traceback(tb) from exc File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 401, in expandWithRefs s = __expand_var_regexp__.sub(varparse.var_sub, s) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 96, in var_sub raise Exception("variable %s references itself!" % self.varname) bb.data_smart.ExpansionError: Failure expanding variable BBFILES, expression was ${BBFILES} <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/workspace/recipes/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/workspace/appends/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb which triggered exception Exception: variable BBFILES references itself! Summary: There was 1 ERROR message shown, returning a non-zero exit code. Execution of '. layers/poky/oe-init-build-env .; PYTHONDONTWRITEBYTECODE=1 BB_SETSCENE_ENFORCE=1 PSEUDO_DISABLED=1 oe-check-sstate <my_image_name> meta-extsdk-toolchain:do_populate_sysroot -s -o <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/tasklist.txt -l <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/tasklist_bb_log.txt' failed with exit code 1: ### Shell environment set up for builds. ### You can now run 'bitbake <target>' Common targets are: core-image-minimal core-image-sato meta-toolchain meta-ide-support You can also run generated qemu images with a command like 'runqemu qemux86' Other commonly useful commands are: - 'devtool' and 'recipetool' handle common recipe tasks - 'bitbake-layers' handles common layer tasks - 'oe-pkgdata-util' handles common target package tasks ERROR: bitbake failed: ERROR: Command execution failed: Traceback (most recent call last): File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 401, in expandWithRefs s = __expand_var_regexp__.sub(varparse.var_sub, s) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 96, in var_sub raise Exception("variable %s references itself!" % self.varname) Exception: variable BBFILES references itself! The above exception was the direct cause of the following exception: Traceback (most recent call last): File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/command.py", line 107, in runAsyncCommand self.cooker.updateCache() File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/cooker.py", line 1558, in updateCache (filelist, masked, searchdirs) = self.collection.collect_bbfiles(self.data, self.data) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/cooker.py", line 1729, in collect_bbfiles files = (config.getVar( "BBFILES") or "").split() File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 589, in getVar return self.getVarFlag(var, "_content", expand, noweakdefault, parsing) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 780, in getVarFlag parser = self.expandWithRefs(value, cachename) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 418, in expandWithRefs raise ExpansionError(varname, s, exc).with_traceback(tb) from exc File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 401, in expandWithRefs s = __expand_var_regexp__.sub(varparse.var_sub, s) File "<my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/bitbake/lib/bb/data_smart.py", line 96, in var_sub raise Exception("variable %s references itself!" % self.varname) bb.data_smart.ExpansionError: Failure expanding variable BBFILES, expression was ${BBFILES} <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer1>/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer1>/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer2>/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/<my_custom_layer2>/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-bacnet/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-bacnet/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-atmel/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-atmel/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-poky/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-poky/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-yocto-bsp/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-yocto-bsp/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-networking/recipes-*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-networking/recipes-*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-python/recipes*/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-python/recipes*/*/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/workspace/recipes/*/*.bb <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/workspace/appends/*.bbappend <my_home_dir>/poky/poky-build/tmp/work/at91sam9x5ek-poky-linux-gnueabi/<my_image_name>/1.0-r0/sdk-ext/image/tmp-renamed-sdk/layers/poky/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-*/*/*.bb which triggered exception Exception: variable BBFILES references itself! Summary: There was 1 ERROR message shown, returning a non-zero exit code. DEBUG: Python function copy_buildsystem finished DEBUG: Python function do_populate_sdk_ext finished
|
|
Re: Maintaining ABI Compatibility for LTS branch
Richard Purdie
On Sun, 2022-02-06 at 20:14 -0500, Sinan Kaya wrote:
One of the limitations of Yocto LTS branch is that there is noWhilst there isn't a guarantee, it is something we're doing our best to ensure. Where there are security issues and we can't fix them as being backwards compatible, we reserve the right to break things in preference to the security issues. We wouldn't do that lightly. Yocto reserves the right to move a package version forward if aIt also comes down to resources. If we have a choice between this and not fixing the issue, we'd have to do this. If there are resources to do a more precision backport, we'd take that option but we're often resource limited. This promise is being held true on the kernel by running kernel APIWe do run extensive tests on the autobuilder including things like LTP. We admittedly lack resources for analysing the comparisions in an automated or manual way sadly. I'd love to see API/ABI reporting added to our builds. I was curious about how everyone is approaching this problem.There have been ideas proposed but I've not seen any full solution as yet. Is everyone rolling their own solution? or never moving forward?I think most are just accepting some level of change and we've tried to keep it to a minimal level. I mentioned this in yesterdays call and these were mentioned: https://github.com/lvc/abi-compliance-checker https://abi-laboratory.pro/index.php?view=tracker There are two reasons people are interested: a) for release stability as you mention b) for performance as it could be tied into the hash equivalence mechanism for artefact reuse - if A hasn't changed ABI, B dependning on it needn't rebuild. There was a proof of concept of b) here: https://lists.yoctoproject.org/g/yocto/message/52650 There are lots of levels it could be implemented at but it is something someone would need to pick up and drive forward with a long term view to helping with issues etc. Cheers, Richard
|
|
Re: Maintaining ABI Compatibility for LTS branch
Steve Sakoman
On Tue, Feb 8, 2022 at 1:07 PM Richard Purdie
<richard.purdie@...> wrote: I'd be interested in hearing about any cases where we've broken things! In general I don't take version upgrades (other than bug fix/cve fix only dot releases) Yocto reserves the right to move a package version forward if aThese cases should be extremely rare, and the community/technical steering committee is given an opportunity to review this before it happens. I'm certainly open to suggestions on how we can do better. I'd love to see some tooling to do ABI checking! Steve This promise is being held true on the kernel by running kernel API
|
|
Re: Maintaining ABI Compatibility for LTS branch
Ross Burton <ross@...>
On Tue, 8 Feb 2022 at 23:07, Richard Purdie
<richard.purdie@...> wrote: I was curious about how everyone is approaching this problem.Relatedly, somewhere I have a branch that uses libabigail to extract the library ABIs in an build. The next step was doing the comparison, but I never got that far. I wouldn't be surprised if someone has done the same but actually finished the effort. Ross
|
|
[meta-raspberrypi][PATCH] gstreamer1.0-plugins-good: Update bbappend to 1.20
An?bal Lim?n
From: Aníbal Limón <limon.anibal@...>
Gstreamer upgraded to 1.20 see, https://git.openembedded.org/openembedded-core/commit/?id=75891f361f3e9df9fc3e97c720a2ae57dda75888 Signed-off-by: Aníbal Limón <anibal@...> Signed-off-by: Aníbal Limón <limon.anibal@...> --- ..._1.18.%.bbappend => gstreamer1.0-plugins-good_1.20.%.bbappend} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename recipes-multimedia/gstreamer/{gstreamer1.0-plugins-good_1.18.%.bbappend => gstreamer1.0-plugins-good_1.20.%.bbappend} (100%) diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20.%.bbappend similarity index 100% rename from recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend rename to recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20.%.bbappend -- 2.34.1
|
|