Searched refs:CustomImageRecipe (Results 1 – 8 of 8) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_builddashboard_page.py | 17 from orm.models import Layer, Layer_Version, Recipe, CustomImageRecipe, Variable 118 self.custom_image_recipe1 = CustomImageRecipe.objects.create( 126 self.custom_image_recipe2 = CustomImageRecipe.objects.create( 138 self.custom_image_recipe3 = CustomImageRecipe.objects.create(
|
H A D | test_new_custom_image_page.py | 15 from orm.models import Layer_Version, Recipe, CustomImageRecipe 75 CustomImageRecipe.objects.create(
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | api.py | 19 from orm.models import Recipe, CustomImageRecipe, CustomImagePackage 554 custom_images = CustomImageRecipe.objects.all() 575 name=CustomImageRecipe.LAYER_NAME, 606 recipe, r_created = CustomImageRecipe.objects.get_or_create( 656 CustomImageRecipe.LAYER_NAME) 710 CustomImageRecipe.objects.get(pk=recipe_id) 713 except CustomImageRecipe.DoesNotExist: 986 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 | 27 from orm.models import BitbakeVersion, CustomImageRecipe, EventLogsImports 1754 recipe = get_object_or_404(CustomImageRecipe, pk=recipe_id)
|
/openbmc/openbmc/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)
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/views/ |
H A D | test_views.py | 21 from orm.models import CustomImageRecipe 57 self.customr = CustomImageRecipe.objects.first() 193 recipe = CustomImageRecipe.objects.get(project=self.project, 242 recipe = CustomImageRecipe.objects.create(
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/ |
H A D | models.py | 414 customrecipe = CustomImageRecipe.objects.filter( 660 queryset = CustomImageRecipe.objects.filter(criteria).order_by('name') 1623 class CustomImageRecipe(Recipe): class
|