summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-21 07:35:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:38 +0000
commita3ccb730cb9a3509a2ddf62bb384a9181b281bdc (patch)
tree59c5028797659293c3194019b0664f6329fbcd0f /bitbake
parentb2e5cab1b5798adea3bf5716492ccc7637dad6b3 (diff)
downloadpoky-a3ccb730cb9a3509a2ddf62bb384a9181b281bdc.tar.gz
bitbake: toaster: Fix Recipe sorting in tasks table
In the tasks table and the other tables derived from it (Time, CPU usage and Disk I/O) sorting by Recipe was not working correctly. This change fixes the problem by specifying use of the recipe name to sort. (Bitbake rev: fa24c857e6f5b3c56f89a2a85dea6ad271f82c01) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index bf7f2c83ea..ddeb992ff1 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -518,8 +518,8 @@ def tasks_common(request, build_id, variant):
518 tc_recipe={ 518 tc_recipe={
519 'name':'Recipe', 519 'name':'Recipe',
520 'qhelp':'The name of the recipe to which each task applies', 520 'qhelp':'The name of the recipe to which each task applies',
521 'orderfield': _get_toggle_order(request, "recipe"), 521 'orderfield': _get_toggle_order(request, "recipe__name"),
522 'ordericon':_get_toggle_order_icon(request, "recipe"), 522 'ordericon':_get_toggle_order_icon(request, "recipe__name"),
523 } 523 }
524 tc_recipe_version={ 524 tc_recipe_version={
525 'name':'Recipe version', 525 'name':'Recipe version',