blob: 73ec163fd47bedb4b251d65d18be669fe65d4c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
python __anonymous() {
for c in (d.getVar('CONTAINER_IMAGES') or "").split():
(mc, image) = c.split(':')
dependency = 'mc::' + mc + ':' + image + ':do_image_complete'
d.appendVarFlag('do_rootfs', 'mcdepends', ' ' + dependency)
}
#
# Force rebuild of rootfs on every build to work around mcdepends issue
#
# NOTE:
# This is currently required as bitbake fails to trigger do_rootfs
# sometimes even when the guest image has in fact rebuilt. This is
# being investigated with upstream.
#
do_rootfs[nostamp] = "1"
|