summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-09-05 15:29:22 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-08 00:33:46 +0100
commitebc6e84b3e8c309acb1d17df19a7ccbf86e30157 (patch)
tree82c5968ac0f6ada79cad4c2faa33432a64b6ea8a /bitbake
parentee7c6d00bb19b762f40702aada93bac568777d24 (diff)
downloadpoky-ebc6e84b3e8c309acb1d17df19a7ccbf86e30157.tar.gz
bitbake: toaster: tasks Remove recipe version from defaults
The 'Recipe version' column should not be part of the set of columns shown by default in the tasks table. Set the hidden property for that column to 'True' so that it doesn't show when you load that table for the first time. [YOCTO #10179] (Bitbake rev: 249dd31fcaabbec32fdee30b0c84be90d4f92430) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/buildtables.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py
index b6485e64fd..dd0a6900dd 100644
--- a/bitbake/lib/toaster/toastergui/buildtables.py
+++ b/bitbake/lib/toaster/toastergui/buildtables.py
@@ -482,7 +482,8 @@ class BuildTasksTable(BuildTablesMixin):
482 orderable=True) 482 orderable=True)
483 483
484 self.add_column(title="Recipe version", 484 self.add_column(title="Recipe version",
485 field_name='recipe__version') 485 field_name='recipe__version',
486 hidden=True)
486 487
487 self.add_column(title="Executed", 488 self.add_column(title="Executed",
488 static_data_name="task_executed", 489 static_data_name="task_executed",