meta-phosphor: ipmid: enable EXTRA_OECONF override
Set the whitelist with the post-parse append operator, so ipmid
bbappends can set EXTRA_OECONF directly.
A simple example illustrates how this helps:
foo.bb:
BAR = "def"
FOO = "abc ${BAR}
foo.bbappend:
FOO = "zyx"
FOO would be "zyx" But if one has:
foo.bb:
BAR = "def"
FOO = "abc"
FOO_append = " ${BAR}"
foo.bbappend:
FOO = "zyx"
FOO would be "zyx def"
This is because bitbake parses recipes and bbappends in multiple
passes - the second pass is when things like the _append operator
and inline python are evaluated.
for more reading:
https://www.yoctoproject.org/docs/latest/bitbake-user-manual/bitbake-user-manual.html#override-style-operation-advantages
Change-Id: I6bb8943d614f35e3fea525faf4e8aaeb701d5f9f
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
1 file changed