summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/packageselectionpage.py40
1 files changed, 20 insertions, 20 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index 23e460caa0..32e438c6ba 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -34,55 +34,55 @@ class PackageSelectionPage (HobPage):
34 34
35 pages = [ 35 pages = [
36 { 36 {
37 'name' : 'All packages', 37 'name' : 'Included',
38 'filter' : {}, 38 'filter' : { PackageListModel.COL_INC : [True] },
39 'columns' : [{ 39 'columns' : [{
40 'col_name' : 'Name', 40 'col_name' : 'Package Name',
41 'col_id' : PackageListModel.COL_NAME, 41 'col_id' : PackageListModel.COL_NAME,
42 'col_style': 'text', 42 'col_style': 'text',
43 'col_min' : 100, 43 'col_min' : 100,
44 'col_max' : 400 44 'col_max' : 300
45 }, { 45 }, {
46 'col_name' : 'size', 46 'col_name' : 'Brought in by',
47 'col_id' : PackageListModel.COL_BINB,
48 'col_style': 'text',
49 'col_min' : 100,
50 'col_max' : 350
51 }, {
52 'col_name' : 'Size',
47 'col_id' : PackageListModel.COL_SIZE, 53 'col_id' : PackageListModel.COL_SIZE,
48 'col_style': 'text', 54 'col_style': 'text',
49 'col_min' : 100, 55 'col_min' : 100,
50 'col_max' : 500 56 'col_max' : 300
51 }, { 57 }, {
52 'col_name' : 'Included', 58 'col_name' : 'Included',
53 'col_id' : PackageListModel.COL_INC, 59 'col_id' : PackageListModel.COL_INC,
54 'col_style': 'check toggle', 60 'col_style': 'check toggle',
55 'col_min' : 50, 61 'col_min' : 50,
56 'col_max' : 50 62 'col_max' : 50
57 }] 63 }]
58 }, { 64 }, {
59 'name' : 'Included', 65 'name' : 'All packages',
60 'filter' : { PackageListModel.COL_INC : [True] }, 66 'filter' : {},
61 'columns' : [{ 67 'columns' : [{
62 'col_name' : 'Name', 68 'col_name' : 'Package Name',
63 'col_id' : PackageListModel.COL_NAME, 69 'col_id' : PackageListModel.COL_NAME,
64 'col_style': 'text', 70 'col_style': 'text',
65 'col_min' : 100, 71 'col_min' : 100,
66 'col_max' : 300 72 'col_max' : 400
67 }, {
68 'col_name' : 'Brought by',
69 'col_id' : PackageListModel.COL_BINB,
70 'col_style': 'text',
71 'col_min' : 100,
72 'col_max' : 350
73 }, { 73 }, {
74 'col_name' : 'size', 74 'col_name' : 'Size',
75 'col_id' : PackageListModel.COL_SIZE, 75 'col_id' : PackageListModel.COL_SIZE,
76 'col_style': 'text', 76 'col_style': 'text',
77 'col_min' : 100, 77 'col_min' : 100,
78 'col_max' : 300 78 'col_max' : 500
79 }, { 79 }, {
80 'col_name' : 'Included', 80 'col_name' : 'Included',
81 'col_id' : PackageListModel.COL_INC, 81 'col_id' : PackageListModel.COL_INC,
82 'col_style': 'check toggle', 82 'col_style': 'check toggle',
83 'col_min' : 50, 83 'col_min' : 50,
84 'col_max' : 50 84 'col_max' : 50
85 }] 85 }]
86 } 86 }
87 ] 87 ]
88 88