I have a .bbappend file rpi-bootfiles.bbappend that runs a task named do_after_deploy which only seems to run if I manually run the task rpi-bootfiles:do_deploy within the original recipe rpi-bootfiles.bb. The task do_after_deploy does not execute when the project as a whole is run even though the dependent task do_deploy runs during the main project. I checked the dependencies of the main project and the single recipe using the command bitbake -g -u taskexp <target> and found that do_after_deploy is only listed as a dependent task if I use the target = rpi-bootfiles. Why would my task not be listed in the dependency explorer when I run bitbake on the entire project? I have attached screenshots which show the dependencies of the do_deploy task which should run before my task. The first screenshot is the task dependency explorer with command bitbake -g -u taskexp rpilinux-image which is the main project. The second screenshot is the task dependency explorer with command bitbake -g -u taskexp rpi-bootfiles which is a single recipe of the main project.
why does my bitbake task only show a dependency when the task is run but not when the project as a whole is run
119 Views Asked by Mule At
0
There are 0 best solutions below
Related Questions in YOCTO
- Create kea runtime directory at startup in Yocto image
- Bitbaking recipe doesn't install DEPENDS
- How do I make a container image from an SD card image?
- Yocto kernel patch fails with git am
- Yocto Kirkstone Bitbake Recipe using Python3 TOML for python3-fastapi
- Confusion with thumb instructions while compiling recipe for cortexm4 CPU
- How to make Yocto place all target RPMs for a specific package group to a separate directory?
- bitbake package-index not creating repomd.xml
- yocto IMAGE_POSTPROCESS_COMMAND
- Yocto Build edk2 recipe giving error in Ubuntu: 20.04.6 LTS
- How to have per MACHINE kernel configuration in Yocto?
- tar.gz image archive created via bitbake differs from archive created manually
- yocto bitbake 'python3 setup.py bdist_wheel ' execution failed
- Yocto conflicting error while building rootfs
- Starting a firmware on imx7d m4 core with bootaux, on u-boot, fail when using TCM memory but not when using DDR memory
Related Questions in BITBAKE
- Bitbake runtime vs build dependency
- Is runtime dependency possible by including a header file?
- Debugging bitbake pkg_postinst_${PN}: Append to config-file installed by other recipe
- modifying kernel config in Yocto
- Extracting lib from yocto build
- How does poky/meta/lib/oe/image.py get included when building core-image-minimal.bb?
- yocto do_patch does not work for native
- How to solve "ERROR: ParseError in <recipe_name>: not a BitBake file"
- How to make /var/log persistent in Yocto Fido (poky)
- Yocto sdcard image class
- How can I replace OpenSSL package in Yocto?
- Issues with bitbake for building Angstrom
- Gumstix Overo wifi drops continously
- media-ctl commands for Caspa mt9v032 omap-isp: gumstix
- Uncomfortable difference between machine libraries and SDK libraries
Related Questions in YOCTO-RECIPE
- Bitbaking recipe doesn't install DEPENDS
- Yocto Kirkstone Bitbake Recipe using Python3 TOML for python3-fastapi
- yocto IMAGE_POSTPROCESS_COMMAND
- How to have per MACHINE kernel configuration in Yocto?
- Yocto conflicting error while building rootfs
- How to resolve Yocto build error for Glib-2.0 for Qt?
- Facing issue when running xbuild after building mono via meta-mono version 6.12.0.161
- Yocto recipe for installing whl
- Yocto useradd completes but no user added to /etc/passwd
- Yocto do_package_write_rpm failed with exit code '1' while building with bitbake
- Yocto adding local tarball path to recipe problem
- How to include Coral into Yocto Build
- Bitbake fetch fails complaining that URL is not trusted
- Is there a specific method to copy the Yocto Project build images (Kirkstone) into another required directory using Yocto Project variables?
- How to build Erlang v24 for couchdb?
Related Questions in YOCTO-LAYER
- Yocto conflicting error while building rootfs
- Understanding layers and recipes when trying to install a utility with yocto
- Yocto unable to switch to sysvinit
- Yocto is ignoring my bbappend when trying to modify another layer's file
- Yocto error adding layer meta-openembedded/meta-python
- Yocto 4.0.15 encounter error doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]
- update-rc.d-native-0.8-r0 do_unpack: Bitbake Fetcher Error: UnpackError on yocto project
- Customize Yocto build by condition
- bitbake custom-image | do_fetch: Fetcher Failure
- Adding Qt6/Pyside2 support in yocto image for x86/amd64 target with Intel CPU
- How to include another recipe inside a recipe
- Create directory and copy file in roofs in Yocto
- Get value for datastore variable in Yocto
- why does my bitbake task only show a dependency when the task is run but not when the project as a whole is run
- How to re-use configuration/includes from another layer?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

