Searched refs:CustomImageRecipe (Results 1 – 8 of 8) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/browser/ |
| H A D | test_builddashboard_page.py | 16 from orm.models import Layer, Layer_Version, Recipe, CustomImageRecipe, Variable 114 self.custom_image_recipe1 = CustomImageRecipe.objects.create( 122 self.custom_image_recipe2 = CustomImageRecipe.objects.create( 134 self.custom_image_recipe3 = CustomImageRecipe.objects.create(
|
| H A D | test_new_custom_image_page.py | 14 from orm.models import Layer_Version, Recipe, CustomImageRecipe 66 CustomImageRecipe.objects.create(
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/ |
| H A D | api.py | 19 from orm.models import Recipe, CustomImageRecipe, CustomImagePackage 550 custom_images = CustomImageRecipe.objects.all() 571 name=CustomImageRecipe.LAYER_NAME, 602 recipe, r_created = CustomImageRecipe.objects.get_or_create( 652 CustomImageRecipe.LAYER_NAME) 706 CustomImageRecipe.objects.get(pk=recipe_id) 709 except CustomImageRecipe.DoesNotExist: 982 except CustomImageRecipe.DoesNotExist:
|
| H A D | tables.py | 11 from orm.models import CustomImageRecipe, Package, Target, Build, LogMessage, Task 500 self.queryset = CustomImageRecipe.objects.filter(project=prj) 563 custom_image_recipes = CustomImageRecipe.objects.filter( 767 CustomImageRecipe.objects.get(pk=kwargs['custrecipeid']) 802 CustomImageRecipe.objects.get(pk=kwargs['custrecipeid'])
|
| H A D | views.py | 20 from orm.models import BitbakeVersion, CustomImageRecipe 1730 recipe = get_object_or_404(CustomImageRecipe, pk=recipe_id)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/bldcontrol/ |
| H A D | localhostbecontroller.py | 14 from orm.models import CustomImageRecipe, Layer, Layer_Version, Project, ToasterSetting 108 if CustomImageRecipe.LAYER_NAME in layer.name: 230 customrecipe = CustomImageRecipe.objects.get( 240 except CustomImageRecipe.DoesNotExist: 255 CustomImageRecipe.LAYER_NAME)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/views/ |
| H A D | test_views.py | 19 from orm.models import CustomImageRecipe 44 self.customr = CustomImageRecipe.objects.first() 177 recipe = CustomImageRecipe.objects.get(project=self.project, 226 recipe = CustomImageRecipe.objects.create(
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/orm/ |
| H A D | models.py | 414 customrecipe = CustomImageRecipe.objects.filter( 660 queryset = CustomImageRecipe.objects.filter(criteria).order_by('name') 1626 class CustomImageRecipe(Recipe): class
|