Building same Image for multiple machines using conf file

917 Views Asked by At

I want to build an image for 2 different machines i.e. rv64ima and rv64imafd with the help of Yocto but the recipes are common for both . Is there any way that I can change the input flags for respective machines in their machine configuration file. So that the only parameter I should pass is the name of machine.

1

There are 1 best solutions below

1
On

You can set MACHINE variable from the outside. In your layer.conf file you can set default machine like:

MACHINE ?= "rv64ima"

And in bash or your bash script you set MACHINE variable implicitly:

export MACHINE="rv64imafd"

Similar question you can find heir.