summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-01-29 14:38:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-10 13:29:21 +0000
commit998f9af193aec78abaddfbedd7dac161ed9d538d (patch)
treeb955076ede19dd5395d11963e7d490d9f2a43b11 /bitbake/lib/toaster/toastergui/urls.py
parent9976e4f169ad39bcbe5ca34c866318d654adaa59 (diff)
downloadpoky-998f9af193aec78abaddfbedd7dac161ed9d538d.tar.gz
bitbake: toaster: customrecipe Add dependency tracking to package selection
Update the states of the packages in the package selection UI to reflect whether it's likely that 1st level dependencies for the package will be also added. (Bitbake rev: 119569d83c3fb1d1bd162624819b3f9c63a791c4) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 4feeebc14a..4aa64887b7 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -171,6 +171,10 @@ urlpatterns = patterns('toastergui.views',
171 # image customisation functionality 171 # image customisation functionality
172 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)/packages/(?P<package_id>\d+|)$', 172 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)/packages/(?P<package_id>\d+|)$',
173 'xhr_customrecipe_packages', name='xhr_customrecipe_packages'), 173 'xhr_customrecipe_packages', name='xhr_customrecipe_packages'),
174
175 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)/packages/$',
176 'xhr_customrecipe_packages', name='xhr_customrecipe_packages'),
177
174 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)$', 'xhr_customrecipe_id', 178 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)$', 'xhr_customrecipe_id',
175 name='xhr_customrecipe_id'), 179 name='xhr_customrecipe_id'),
176 url(r'^xhr_customrecipe/', 'xhr_customrecipe', 180 url(r'^xhr_customrecipe/', 'xhr_customrecipe',