bitbake:如何根据机器添加包?
bitbake: how to add package depending on MACHINE?
我使用 bitbake
构建的图像必须包含针对不同机器的不同包(例如,我需要将包 package1
添加到 machine1
的图像,而不是 machine2
).
可以添加行
IMAGE_INSTALL_append_machine1 = " package1"
到图像配方。但我认为这是不可持续的,因为 IMAGE_INSTALL_append_machine1
可能在其他一些配方中定义(不在我的控制之下),并且较早的定义会被后面的定义覆盖。这就是我认为的Yocto项目开发手册warns about using IMAGE_INSTALL.
我的担忧是否成立?在这种情况下,编写食谱的正确方法是什么?
我相信您正在寻找的功能是 base_contains
This functions is used to set a variable to one of two values based on
the definition of a third variable.
${@base_contains('variable-name', 'value', 'true-result', 'false-result',d)}"
where:
variable-name This is the name of a variable to check.
value This is the value to compare the variable against.
true-result If the variable equals the value then this is what is
returned by the function.
false-result If the variable does not equal the value then this is
what is returned by the function.
另外,您可以使用 ??=
来提供默认值。 ?=
和 ??=
之间的区别在于 ??=
赋值直到解析过程结束才发生。
您可以看一下示例 here 中的图像配方
http://www.embeddedlinux.org.cn/OEManual/recipes_advanced_python.html
我使用 bitbake
构建的图像必须包含针对不同机器的不同包(例如,我需要将包 package1
添加到 machine1
的图像,而不是 machine2
).
可以添加行
IMAGE_INSTALL_append_machine1 = " package1"
到图像配方。但我认为这是不可持续的,因为 IMAGE_INSTALL_append_machine1
可能在其他一些配方中定义(不在我的控制之下),并且较早的定义会被后面的定义覆盖。这就是我认为的Yocto项目开发手册warns about using IMAGE_INSTALL.
我的担忧是否成立?在这种情况下,编写食谱的正确方法是什么?
我相信您正在寻找的功能是 base_contains
This functions is used to set a variable to one of two values based on the definition of a third variable.
${@base_contains('variable-name', 'value', 'true-result', 'false-result',d)}"
where:variable-name This is the name of a variable to check.
value This is the value to compare the variable against.
true-result If the variable equals the value then this is what is returned by the function.
false-result If the variable does not equal the value then this is what is returned by the function.
另外,您可以使用 ??=
来提供默认值。 ?=
和 ??=
之间的区别在于 ??=
赋值直到解析过程结束才发生。
您可以看一下示例 here 中的图像配方
http://www.embeddedlinux.org.cn/OEManual/recipes_advanced_python.html