summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-05 16:37:23 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-11 00:04:42 +0100
commit4cf1aa5ae467f7f16ab7f641319bf2404e666dd0 (patch)
tree8d93b86d1772f627ab43d4d735181a81957aa3bf
parent49cd60e3c3953a71fac816c01224efbfb970310c (diff)
downloadpoky-4cf1aa5ae467f7f16ab7f641319bf2404e666dd0.tar.gz
lib/bb/ui/crumbs/recipeselectionpage: include 'Group' in 'Included' view
The 'Included' tab of the notebook should show the 'Group' a recipe belongs to, per the design. (Bitbake rev: 4f45d791644e383b11cbcfd4fb02866518cb9c04) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/recipeselectionpage.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index 956b02dd95..8314449eef 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -49,6 +49,12 @@ class RecipeSelectionPage (HobPage):
49 'col_min' : 100, 49 'col_min' : 100,
50 'col_max' : 500 50 'col_max' : 500
51 }, { 51 }, {
52 'col_name' : 'Group',
53 'col_id' : RecipeListModel.COL_GROUP,
54 'col_style': 'text',
55 'col_min' : 100,
56 'col_max' : 300
57 }, {
52 'col_name' : 'Included', 58 'col_name' : 'Included',
53 'col_id' : RecipeListModel.COL_INC, 59 'col_id' : RecipeListModel.COL_INC,
54 'col_style': 'check toggle', 60 'col_style': 'check toggle',