| /openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/ | 
| H A D | test_create_new_project.py | 19         """ Test create new project using:20           - Project Name: Any string
 21           - Release: Yocto Project master (option value: 3)
 25         release_title = 'Yocto Project master'
 35         """ Test create new project using:
 36           - Project Name: Any string
 37           - Release: Yocto Project 5.0 "Scarthgap" (option value: 1)
 41         release_title = 'Yocto Project 5.0 "Scarthgap"'
 51         """ Test create new project using:
 52           - Project Name: Any string
 [all …]
 
 | 
| H A D | test_functional_basic.py | 14 from orm.models import Project28 …      FuntionalTestBasic.project_id = self.create_new_project('selenium-project', '3', None, False)
 34         self.find_element_by_link_text_in_table('projectstable', 'selenium-project').click()
 87         self.find_element_by_link_text_in_table('projectstable', 'selenium-project').click()
 92 …self.assertTrue(self.element_exists('#machine-section'),'Machine section for the project configura…
 93 …e(re.search("qemux86-64",self.driver.find_element(By.XPATH, "//span[@id='project-machine-name']").…
 107            self.fail(msg='No Most built information in project detail page')
 109         # Project Release title
 110 …to Project master",self.driver.find_element(By.XPATH, "//span[@id='project-release-title']").text)…
 112         # List of layers in project
 [all …]
 
 | 
| /openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ | 
| H A D | test_all_projects_page.py | 18 from orm.models import BitbakeVersion, Release, Project, Build27     PROJECT_NAME = 'test project'
 32         """ Add default project manually """
 33         project = Project.objects.create_project(
 35         self.default_project = project
 39         # this project is only set for some of the tests
 40         self.project = None
 48                 Project(
 49                     name='test project {}'.format(i),
 53         Project.objects.bulk_create(projects)
 [all …]
 
 | 
| H A D | test_new_project_page.py | 15 from orm.models import Project, Release, BitbakeVersion19     """ Test project data at /project/X/ is displayed correctly """
 44         """ Test creating a project """
 50         self.wait_until_visible('#new-project-name')
 51         self.enter_text('#new-project-name', project_name)
 56         self.click("#create-project-button")
 58         # We should get redirected to the new project's page with the
 61             '#project-created-notification')
 64                         "New project name not in new project notification")
 66         self.assertTrue(Project.objects.filter(name=project_name).count(),
 [all …]
 
 | 
| H A D | test_delete_project.py | 13 from orm.models import BitbakeVersion, Project, Release27             description="Yocto Project master",
 34             description="Yocto Project foo",
 41         """ Test delete a project
 45             - Check project is deleted
 50         self.enter_text('#new-project-name', project_name)
 53         self.click("#create-project-button")
 54         # We should get redirected to the new project's page with the
 56         element = self.wait_until_visible('#project-created-notification')
 58                         "New project name not in new project notification")
 [all …]
 
 | 
| H A D | test_project_page.py | 14 from orm.models import Build, Project17     """ Test project data at /project/X/ is displayed correctly """
 24         when navigating to "command line builds" project page;
 28         # add the "command line builds" default project; this mirrors what
 30         default_project = Project.objects.create_project(self.CLI_BUILDS_PROJECT_NAME, None)
 34         # add an "in progress" build for the default project
 36         Build.objects.create(project=default_project,
 41         # navigate to the project page for the default project
 42         url = reverse("project", args=(default_project.id,))
 45         # check that we get a project page with the correct heading
 [all …]
 
 | 
| H A D | test_new_custom_image_page.py | 14 from orm.models import BitbakeVersion, Release, Project, ProjectLayer, Layer30         # project to add new custom images to
 31         self.project = Project.objects.create(name='foo', release=release)
 33         # layer associated with the project
 37             project=self.project
 40         # properly add the layer to the project
 42             project=self.project,
 59         # another project with a custom image already in it
 60         project2 = Project.objects.create(name='whoop', release=release)
 63             project=project2
 [all …]
 
 | 
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ | 
| H A D | project_specific_topbar.html | 6       numProjectLayers : {{project.get_project_layer_versions.count}},7       machine : "{{project.get_current_machine_name|default_if_none:""}}",
 20 …<div class="alert alert-success alert-dismissible change-notification" id="project-created-notific…
 22 …project <strong>{{project.name}}</strong> has been created. You can now <a class="alert-link" href…
 24   <!-- project name -->
 26     <h1 id="project-name-container">
 27       <span class="project-name">{{project.name}}</span>
 28       {% if project.is_default %}
 29 …<span class="glyphicon glyphicon-question-sign get-help" title="This project shows information abo…
 32     <form id="project-name-change-form" class="form-inline" style="display: none;">
 [all …]
 
 | 
| H A D | projecttopbar.html | 6       numProjectLayers : {{project.get_project_layer_versions.count}},7       machine : "{{project.get_current_machine_name|default_if_none:""}}",
 20 …<div class="alert alert-success alert-dismissible change-notification" id="project-created-notific…
 22 …project <strong>{{project.name}}</strong> has been created. You can now <a class="alert-link" href…
 24   <!-- project name -->
 26     <h1 id="project-name-container">
 27       <span class="project-name">{{project.name}}</span>
 29       <span class="glyphicon glyphicon-edit" id="project-change-form-toggle"></i>
 31       {% if project.is_default %}
 32 …<span class="glyphicon glyphicon-question-sign get-help" title="This project shows information abo…
 [all …]
 
 | 
| H A D | newproject.html | 5 {% block title %} Create a new project - Toaster {% endblock %}11           <h1>Create a new project</h1>
 18           <div class="form-group" id="validate-project-name">
 19 …       <label class="control-label">Project name <span class="text-muted">(required)</span></label>
 20 …         <input type="text" class="form-control" required id="new-project-name" name="projectname">
 22 …xt-danger" style="display: none;" id="hint-error-project-name">A project with this name exists. Pr…
 24                 <label class="project-form">Project type:</label>
 26 …<label class="project-form radio" style="padding-left: 35px;"><input id='type-new'    type="radio"…
 28 …ass="project-form radio" style="padding-left: 35px;"><input id='type-import' type="radio" name="pt…
 35 …ion-sign get-help" title="The version of the build system you want to use for this project"></span>
 [all …]
 
 | 
| H A D | project.html | 7 {% block title %} Configuration - {{project.name}} - Toaster {% endblock %}15       testReleaseChangeUrl: "{% url 'xhr_testreleasechange' project.id %}",
 21       document.write("Sorry, An error has occurred loading this page (project):"+e);
 27 <div id="delete-project-modal" class="modal fade" tabindex="-1" role="dialog" data-backdrop="static…
 31         <h4>Are you sure you want to delete this project?</h4>
 34         <p>Deleting the <strong class="project-name"></strong> project
 45         <button type="button" class="btn btn-primary" id="delete-project-confirmed">
 46           <span data-role="submit-state">Delete project</span>
 51              Deleting project...
 61 <div class="row" id="project-page" style="display:none">
 [all …]
 
 | 
| H A D | base_specific.html | 46         {% if project.id %}47         landingSpecificURL : "{% url 'landing_specific' project.id %}",
 48         landingSpecificCancelURL : "{% url 'landing_specific_cancel' project.id %}",
 49         projectId : {{project.id}},
 50         projectPageUrl : {% url 'project' project.id as purl %}{{purl|json}},
 51         projectSpecificPageUrl : {% url 'project_specific' project.id as purl %}{{purl|json}},
 52         xhrProjectUrl : {% url 'xhr_project' project.id as pxurl %}{{pxurl|json}},
 53         projectName : {{project.name|json}},
 54         recipesTypeAheadUrl: {% url 'xhr_recipestypeahead' project.id as paturl%}{{paturl|json}},
 55         layersTypeAheadUrl: {% url 'xhr_layerstypeahead' project.id as paturl%}{{paturl|json}},
 [all …]
 
 | 
| H A D | project_specific.html | 7 {% block title %} Configuration - {{project.name}} - Toaster {% endblock %}15       testReleaseChangeUrl: "{% url 'xhr_testreleasechange' project.id %}",
 27 <div id="delete-project-modal" class="modal fade" tabindex="-1" role="dialog" data-backdrop="static…
 31         <h4>Are you sure you want to delete this project?</h4>
 34         <p>Deleting the <strong class="project-name"></strong> project
 45         <button type="button" class="btn btn-primary" id="delete-project-confirmed">
 46           <span data-role="submit-state">Delete project</span>
 51              Deleting project...
 61 <div class="row" id="project-page" style="display:none">
 66 …<p class="lead"><span id="project-machine-name"></span> <span class="glyphicon glyphicon-edit" id=…
 [all …]
 
 | 
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastermain/management/commands/ | 
| H A D | buildimport.py | 9 # buildimport: import a project for project specific configuration23 #  (d) Open Toaster to this project using for example:
 26 #  (e) To delete a project:
 28 #        --name=$PROJECTNAME --delete-project
 35 from orm.models import Project, Release, ProjectVariable
 94             help='name of the project',
 98             help='path to the project',
 102             help='release for the project',
 106             help='callback for project config update',
 109             '--delete-project', dest='delete_project', required=False,
 [all …]
 
 | 
| /openbmc/qemu/docs/devel/ | 
| H A D | codebase.rst | 15 `MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_48 * `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_:
 53   `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_.
 54 * `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_:
 56 * `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_:
 58 * `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_:
 61 * `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_:
 63 * `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_:
 67 * `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_:
 69 * `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_:
 [all …]
 
 | 
| /openbmc/openbmc/poky/documentation/ref-manual/ | 
| H A D | resources.rst | 12 The Yocto Project team is happy for people to experiment with the Yocto13 Project. There is a number of places where you can find help if you run into
 15 and participating in the Yocto Project.
 22 The Yocto Project gladly accepts contributions. You can submit changes
 23 to the project either by creating and sending pull requests, or by
 30 Yocto Project Bugzilla
 33 The Yocto Project uses its own implementation of
 41 the Yocto Project itself (e.g. when discovering an issue with some
 46 against the Yocto Project, see the following:
 49    section in the Yocto Project and OpenEmbedded Contributor Guide.
 [all …]
 
 | 
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templatetags/ | 
| H A D | project_url_tag.py | 12     Create a URL for a project's main page;14     for the default project, this is the project builds page
 17         tag_name, project = token.split_contents()
 22     return ProjectUrlNode(project)
 25     def __init__(self, project):  argument
 26         self.project = template.Variable(project)
 30             project = self.project.resolve(context)
 31             if project.is_default:
 32                 return reverse('projectbuilds', args=(project.id,))
 34                 return reverse('project', args=(project.id,))
 
 | 
| /openbmc/openbmc/poky/documentation/overview-manual/ | 
| H A D | yp-intro.rst | 4 Introducing the Yocto Project7 What is the Yocto Project?
 10 The Yocto Project is an open source collaboration project that helps
 13 Yocto Project provides a flexible toolset and a development environment
 18 Thousands of developers worldwide have discovered that Yocto Project
 21 footprint, and memory utilization. The project is a standard when it
 22 comes to delivering embedded software stacks. The project allows
 29 For further introductory information on the Yocto Project, you might be
 31 …/www.embedded.com/electronics-blogs/say-what-/4458600/Why-the-Yocto-Project-for-my-IoT-Project->`__
 36 to the Yocto Project.
 [all …]
 
 | 
| H A D | intro.rst | 4 The Yocto Project Overview and Concepts Manual10 Welcome to the Yocto Project Overview and Concepts Manual! This manual
 11 introduces the Yocto Project by providing concepts, software overviews,
 13 information suitable for a new Yocto Project user.
 17 -  :ref:`overview-manual/yp-intro:introducing the yocto project`\ *:*
 18    This chapter provides an introduction to the Yocto Project. You will learn
 19    about features and challenges of the Yocto Project, the layer model,
 24 -  :ref:`overview-manual/development-environment:the yocto project development environment`\ *:*
 25    This chapter helps you get started understanding the Yocto Project
 27    Yocto Project source repositories, workflows using Git and the Yocto
 [all …]
 
 | 
| H A D | development-environment.rst | 4 The Yocto Project Development Environment7 This chapter takes a look at the Yocto Project development environment.
 8 The chapter provides Yocto Project Development environment concepts that
 30 software project. The open source environment contains new copyright,
 36 A benchmark example of an open source project is the Linux kernel, which
 39 project is the Windows family of operating systems developed by
 51 using the Yocto Project. Because the goal of the Yocto Project is to
 57 Project. Most find that it is best to have a native Linux machine
 70 the Yocto Project Development Tasks Manual.
 74 for use with the Yocto Project. You need to be sure that the Linux
 [all …]
 
 | 
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ | 
| H A D | api.py | 17 from orm.models import Project, ProjectTarget, Build, Layer_Version95         project = Project.objects.get(pk=kwargs['pid'])
 100                     br = BuildRequest.objects.get(project=project, pk=i)
 111                         project=project,
 120             ProjectTarget.objects.filter(project=project).delete()
 128                 ProjectTarget.objects.create(project=project,
 131             project.schedule_build()
 147           Project Update
 153               pid: pid of project to update
 161         project = Project.objects.get(pk=kwargs['pid'])
 [all …]
 
 | 
| H A D | tables.py | 10 from orm.models import Recipe, ProjectLayer, Layer_Version, Project42         project = Project.objects.get(pk=kwargs['pid'])
 43         context['project'] = project
 48         project = Project.objects.get(pk=kwargs['pid'])
 49         self.project_layers = ProjectLayer.objects.filter(project=project)
 53             "Filter by project layers"
 60             "Layers added to this project",
 66             "Layers not added to this project",
 75         prj = Project.objects.get(pk = kwargs['pid'])
 154 …vision is always the branch compatible with the Yocto Project version you selected for this projec…
 [all …]
 
 | 
| /openbmc/openbmc/poky/meta/lib/oeqa/manual/ | 
| H A D | toaster-managed-mode.json | 13 …"action": " Access a project page, either by creating a new project or accessing an existing proje…17 …ction": "On the project page click on the \"View compatible layers\" link situated on the right-ha…
 29 …he \"Revision\" entries match the release entry from the main project page, in the project details…
 33 … and that instance has a branch that matches the selected project release from the main project pa…
 59 …"action": " Access a project page, either by creating a new project or accessing an existing proje…
 63 …ction": "On the project page click on the \"View compatible layers\" link situated on the right-ha…
 71 …project. \n \nClick on the \"Add layer\" button present in the \"Add/delete\" column. \nIf the lay…
 79 …Delete an existing layer \nPick a layer that's already been added to the project. \nClick on the \…
 97 …"action": " Access a project page, either by creating a new project or accessing an existing proje…
 101 …"action": " If no images exist in the project, build an image by inserting \"core-image-minimal\" …
 [all …]
 
 | 
| /openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ | 
| H A D | verify-files.py | 29         # Set to store unique (project, file) pairs46                 project = data.get("project", "")
 47                 if not project:
 50                 # Check if project is acceptable
 51                 if not acceptable.project(project):
 52                     if project not in rejected_projects:
 53                         print(f"Rejected project: {project}")
 54                         rejected_projects.add(project)
 67                             unique_files.add((project, file_name))
 74         for project, file_name in sorted(unique_files):
 [all …]
 
 | 
| /openbmc/qemu/ | 
| H A D | .gitmodules | 3 	url = https://gitlab.com/qemu-project/seabios.git/6 	url = https://gitlab.com/qemu-project/SLOF.git
 9 	url = https://gitlab.com/qemu-project/ipxe.git
 12 	url = https://gitlab.com/qemu-project/openbios.git
 15 	url = https://gitlab.com/qemu-project/qemu-palcode.git
 18 	url = https://gitlab.com/qemu-project-mirrors/u-boot.git
 21 	url = https://gitlab.com/qemu-project/skiboot.git
 24 	url = https://gitlab.com/qemu-project/QemuMacDrivers.git
 27 	url = https://gitlab.com/qemu-project/seabios-hppa.git
 30 	url = https://gitlab.com/qemu-project-mirrors/u-boot-sam460ex.git
 [all …]
 
 |