문제

In a yocto project, the core-image.bbclass contains the following code.

python __anonymous() {
    ................
    ................
}

What is the meaning of the __anonymous function here?

도움이 되었습니까?

해결책

In a BitBake recipe, anonymous python code is executed after the recipe is parsed. You can almost think of it as "post-processing" for a recipe. That's all there is to it. Bitbake executes the code within the anonymous block after the recipe is parsed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top