What is the difference between qemu and qemu-native packages in Yocto?

I would like to understand the relationship between the two packages because it seems that changing the source uri for "qemu" breaks the assembly for qemu-native.

I'm not a Yocot / Bitbake expert, so a little clarification will go a long way.

Thank.

+3


source to share


1 answer


-native

just indicates that this is a recipe built for the native platform (to run in the root sysroot on the build host), not a cross-compiled target platform. qemu

and are qemu-native

built from the same recipe: why changing SRC_URI affects both. "- there is a native version, because somewhere in the recipe it is written



BBCLASSEXTEND = "native"

      

+4


source







All Articles