I am trying to get a datastore variable.
I know I can do
bitbake -e <image-name> | grep ^VARIABLE= to get all the assignments.
This datastore variable, however, contains other variables or datastore variables, so I will have to resolve them recursively in order to get all values.
Is there an easy way to get collected values of a datastore variable for a image??
If I understand you correctly:
You have a variable
VARIABLEthat has other variable names like:and you want to get all values of
OTHER1,OTHER2andOTHER3and put them again in theVARIABLEvariable.You can do the following:
Example:
If you meant something else, feel free to add a comment and I will edit this reponse accordingly.