Skip to content

Instantly share code, notes, and snippets.

@woglinde
woglinde / something.bbclass
Created September 13, 2012 12:17
Variable manipulation in openembedded
python () {
hpl = d.getVar('HPL', True)
hpl.replace(...)
d.setVar('HPL', hpl)
}
do_b () {
hpl="${HPL}"
echo "hpl: ${HPL}"
}