diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/views.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index 36eb0bf97e..e4ada14125 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
| @@ -481,6 +481,17 @@ def task( request, build_id, task_id ): | |||
| 481 | if task.outcome == task.OUTCOME_FAILED: | 481 | if task.outcome == task.OUTCOME_FAILED: |
| 482 | pass | 482 | pass |
| 483 | 483 | ||
| 484 | uri_list= [ ] | ||
| 485 | variables = Variable.objects.filter(build=build_id) | ||
| 486 | v=variables.filter(variable_name='SSTATE_DIR') | ||
| 487 | if v.count > 0: | ||
| 488 | uri_list.append(v[0].variable_value) | ||
| 489 | v=variables.filter(variable_name='SSTATE_MIRRORS') | ||
| 490 | if (v.count > 0): | ||
| 491 | for mirror in v[0].variable_value.split('\\n'): | ||
| 492 | s=re.sub('.* ','',mirror.strip(' \t\n\r')) | ||
| 493 | if len(s): uri_list.append(s) | ||
| 494 | |||
| 484 | context = { | 495 | context = { |
| 485 | 'build' : Build.objects.filter( pk = build_id )[ 0 ], | 496 | 'build' : Build.objects.filter( pk = build_id )[ 0 ], |
| 486 | 'object' : task, | 497 | 'object' : task, |
| @@ -491,6 +502,7 @@ def task( request, build_id, task_id ): | |||
| 491 | 'log_head' : log_head, | 502 | 'log_head' : log_head, |
| 492 | 'log_body' : log_body, | 503 | 'log_body' : log_body, |
| 493 | 'showing_matches' : False, | 504 | 'showing_matches' : False, |
| 505 | 'uri_list' : uri_list, | ||
| 494 | } | 506 | } |
| 495 | if request.GET.get( 'show_matches', "" ): | 507 | if request.GET.get( 'show_matches', "" ): |
| 496 | context[ 'showing_matches' ] = True | 508 | context[ 'showing_matches' ] = True |
