summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-21 10:14:09 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-22 14:40:39 +0000
commit31124e675bd0a444b0d162a67f9623f9d1e7965a (patch)
tree3becb6c6f66043ef758b0fd0a9f6caded38e6701 /bitbake
parent8cc7b246f30134ca8984e9dc4277ef91f34498fe (diff)
downloadpoky-31124e675bd0a444b0d162a67f9623f9d1e7965a.tar.gz
Hob: Change package selection tab order
In the package screen, change the tab order to be: "Included" and "All packages". Also change some descriptions in tab. This fixes [YOCTO #2111] (From Poky rev: 25628f43d16bcc35874bdac3e1ce1b552c049633) (Bitbake rev: e12a5e478635a0de87060ac20aff8c9b1858596e) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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