summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-01-28 18:01:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-10 13:29:20 +0000
commitd77c2472307a1bf489a400b9b4daefe65b9006ab (patch)
tree489d5e5e5090cf7bbf82a57495e6602faf221527 /bitbake
parent481dc1154709d9d1061de259d7133335c7497051 (diff)
downloadpoky-d77c2472307a1bf489a400b9b4daefe65b9006ab.tar.gz
bitbake: toaster: CustomImageRecipe generate overwrite IMAGE_FEATURES
If we're breaking up an image recipe's packages we will also need to override IMAGE_FEATURES to make sure the customisation is not altered (Bitbake rev: 9fd7b05dc0cf9240f7c8e3dc77b009064fd2b0cb) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/orm/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index b70fa18feb..cb3c385c60 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -1457,7 +1457,7 @@ class CustomImageRecipe(Recipe):
1457 for pkg in self.appends_set.all(): 1457 for pkg in self.appends_set.all():
1458 packages_conf += pkg.name+' ' 1458 packages_conf += pkg.name+' '
1459 else: 1459 else:
1460 packages_conf = "IMAGE_INSTALL = \"" 1460 packages_conf = "IMAGE_FEATURES =\"\"\nIMAGE_INSTALL = \""
1461 # We add all the known packages to be built by this recipe apart 1461 # We add all the known packages to be built by this recipe apart
1462 # from the packagegroups, which would bring the excluded package 1462 # from the packagegroups, which would bring the excluded package
1463 # back in and locale packages which are dynamic packages which 1463 # back in and locale packages which are dynamic packages which