Yocto bitbake configuration for MACHINE variable via shell environment variable -
building via yocto project,which variable preferred or picked bitbake machine ,environment variable or set in local.conf
the answer usual bitbake "it depends" in case of machine, environment variable wins.
the preference depends on how configuration file sets variable. typically machine set soft assignment (e.g. machine ?= "intel-corei7-64"
) , soft assignment not override environment variable. normal assignment (machine = "intel-corei7-64"
) not respect environment variable.
Comments
Post a Comment