Replies: 1 comment 3 replies
-
The bundle.bbclass expects the image to be generated by an image recipe by default. If it is generated by another sort of recipe, you may want to use another type:
Then it depends on the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have a A/B system with seperate appfs partition.
My config looks like this:
I am trying to build bundle which contains both rootfs and appfs.
I have a simple recipe to fill app partition, it just copies apps from git repository into some tmp folder inside yocto build.
I have a wic plugin which gets called later and creates the partition and fills it with data from tmp folder.
I have bundle recipe where I put the recipe which I am using for appfs partition to its slot
Te build fails on
update-bundle.bb depends upon non-existent task do_image_complete in apps.bb
So from my understanding RAUC expects that the recipe actually builds the artifact as ext4 but the recipe doesnt provide that because its simple and just copies the files. But later the wic plugin creates them so is there any option how to let RAUC know about this?
Beta Was this translation helpful? Give feedback.
All reactions