Searched +full:init +full:- +full:stage2 (Results 1 – 20 of 20) sorted by relevance
| /third_party/mesa3d/.gitlab-ci/bare-metal/ |
| D | bm-init.sh | 3 # Init entrypoint for bare-metal devices; calls common init code. 6 /init-stage1.sh 11 test $? -eq 0 && /init-stage2.sh 13 # Wait until the job would have timed out anyway, so we don't spew a "init
|
| /third_party/mesa3d/.gitlab-ci/lava/utils/ |
| D | ssh_job_definition.py | 11 via SSH pseudo terminal, instead of relying in the error-prone UART. 13 In more detail, we aim to use "export -p" to share the initial boot environment 14 with SSH LAVA test-cases. 15 The "init-stage1.sh" script handles tasks such as system mounting and network 16 setup, which are necessary for allocating a pseudo-terminal under "/dev/pts". 24 2. [DUT] Running the "init-stage1.sh" script for the first SSH test case. 25 3. [DUT] Export the first boot environment to `/dut-env-vars.sh` file. 26 4. [SSH] Enabling the pseudo-terminal for colors and running the "init-stage2.sh" 27 script after sourcing "dut-env-vars.sh" again for the second SSH test case. 45 "dropbear -R -B", [all …]
|
| D | lava_job_definition.py | 35 def __init__(self, job_submitter: "LAVAJobSubmitter") -> None: 40 self.extra_nfsroot_args: str = " init=/init rootwait usbcore.quirks=0bda:8153:k" 42 def has_ssh_support(self) -> bool: 52 def generate_lava_yaml_payload(self) -> dict[str, Any]: 82 elif args.boot_method == "qemu-nfs": 90 wrap_final_deploy_action(deploy_actions[-1]) 110 def generate_lava_job_definition(self) -> str: 125 # python-fire parses --lava-tags without arguments as True 128 # python-fire parses "tag-1,tag2" as str and "tag1,tag2" as tuple 129 # even if the -- --separator is something other than '-' [all …]
|
| D | uart_job_definition.py | 9 # Use the same image that is being used for the hardware enablement and health-checks. 12 # https://gitlab.collabora.com/lava/health-check-docker/-/blob/main/Dockerfile 13 # And the registry here: https://gitlab.collabora.com/lava/health-check-docker/container_registry/ 14 DOCKER_IMAGE = "registry.gitlab.collabora.com/lava/health-check-docker" 19 ) -> tuple[dict[str, Any], ...]: 42 "mkbootimg --kernel Image.gz+dtb" 43 + f' --cmdline "{cmdline}"' 44 + " --pagesize 4096 --base 0x80000000 -o boot.img", 69 def tftp_deploy_actions(job_definition: "LAVAJobDefinition", nfsrootfs) -> tuple[dict[str, Any]]: 86 def qemu_deploy_actions(job_definition: "LAVAJobDefinition", nfsrootfs) -> tuple[dict[str, Any]]: [all …]
|
| /third_party/mesa3d/.gitlab-ci/tests/data/ |
| D | UBOOT_force_uart=True_job_definition.yaml | 1 job_name: 'test-project: my_pipeline_info' 5 - my_visibility_group 8 extra_nfsroot_args: ' init=/init rootwait usbcore.quirks=0bda:8153:k' 13 depthcharge-retry: 15 depthcharge-start: 17 depthcharge-action: 19 uboot-action: 22 - deploy: 36 - boot: 38 method: u-boot [all …]
|
| D | FASTBOOT_force_uart=True_job_definition.yaml | 1 job_name: 'test-project: my_pipeline_info' 5 - my_visibility_group 8 extra_nfsroot_args: ' init=/init rootwait usbcore.quirks=0bda:8153:k' 13 depthcharge-retry: 15 depthcharge-start: 17 depthcharge-action: 19 uboot-action: 22 - deploy: 31 - deploy: 43 image: registry.gitlab.collabora.com/lava/health-check-docker [all …]
|
| D | UBOOT_force_uart=False_job_definition.yaml | 1 job_name: 'test-project: my_pipeline_info' 5 - my_visibility_group 8 extra_nfsroot_args: ' init=/init rootwait usbcore.quirks=0bda:8153:k' 13 depthcharge-retry: 15 depthcharge-start: 17 depthcharge-action: 19 uboot-action: 22 - deploy: 38 - boot: 40 method: u-boot [all …]
|
| D | FASTBOOT_force_uart=False_job_definition.yaml | 1 job_name: 'test-project: my_pipeline_info' 5 - my_visibility_group 8 extra_nfsroot_args: ' init=/init rootwait usbcore.quirks=0bda:8153:k' 13 depthcharge-retry: 15 depthcharge-start: 17 depthcharge-action: 19 uboot-action: 22 - deploy: 32 - deploy: 44 image: registry.gitlab.collabora.com/lava/health-check-docker [all …]
|
| /third_party/mesa3d/.gitlab-ci/piglit/ |
| D | piglit-traces.sh | 6 . "${SCRIPTS_DIR}/setup-test-env.sh" 10 set -ex 15 INSTALL=$(realpath -s "$PWD"/install) 16 S3_ARGS="--token-file ${S3_JWT_FILE}" 21 # Needed because yq and ci-fairy are installed there. 25 yq -iY 'del(.traces[][] | select(.label[]? == "no-perf"))' \ 29 export PIGLIT_REPLAY_EXTRA_ARGS="--keep-image ${PIGLIT_REPLAY_EXTRA_ARGS}" 37 if [ -n "${VK_DRIVER}" ]; then 38 ARCH=$(uname -m) 44 MESA_VERSION=$(head -1 "$INSTALL/VERSION" | sed 's/\./\\./g') [all …]
|
| /third_party/mesa3d/.gitlab-ci/lava/ |
| D | lava_job_submitter.py | 3 # Copyright (C) 2020 - 2023 Collabora Limited 8 # SPDX-License-Identifier: MIT 50 # sophisticated dict-like data abstractions. 98 def raise_exception_from_metadata(metadata: dict, job_id: int) -> None: 111 # with mal-formed job definitions. As we are always validating the 128 def raise_lava_error(job) -> None: 142 def fetch_logs(job, max_idle_time, log_follower) -> None: 156 if datetime.now(tz=UTC) - job.last_log_time > max_idle_time: 170 # If we had non-empty log data, we can assure that the device is alive. 210 (datetime.now(tz=UTC) - CI_JOB_STARTED_AT).total_seconds() [all …]
|
| /third_party/mesa3d/.gitlab-ci/test/ |
| D | gitlab-ci.yml | 7 - !reference [default, before_script] 9 - rm -rf install 10 - tar -xf artifacts/install.tar 11 - section_start ldd_section "Checking ldd on driver build" 12 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \; 13 - section_end ldd_section 18 - results/ 20 - !reference [.common-rules, rules] 21 - !reference [.never-post-merge-rules, rules] 23 .formatting-check: [all …]
|
| /third_party/rust/rust/src/ci/docker/scripts/ |
| D | fuchsia-test-runner.py | 7 https://doc.rust-lang.org/stable/rustc/platform-support/fuchsia.html#aarch64-unknown-fuchsia-and-x8… 64 with open(cls.env_file_path(), encoding="utf-8") as f: 74 with open(self.env_file_path(), "w", encoding="utf-8") as f: 89 TEST_REPO_NAME: ClassVar[str] = "rust-testing" 98 "stage2", 124 return "x86_64-unknown-linux-gnu" 126 return "aarch64-unknown-linux-gnu" 154 return os.path.join(self.tmp_dir(), "user-home") 165 # We want this to be a long-running process that persists after the script finishes 166 # pylint: disable=consider-using-with [all …]
|
| /third_party/rust/rust/src/bootstrap/ |
| D | lib.rs | 71 #[cfg(feature = "build-metrics")] 98 "llvm-cov", // used to generate coverage report 99 "llvm-nm", // used to inspect binaries; it shows symbol names, their sizes and visibility 100 "llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume 101 "llvm-objdump", // used to disassemble programs 102 "llvm-profdata", // used to inspect and merge files generated by profiles 103 "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide 104 "llvm-size", // used to prints the size of the linker sections of a program 105 "llvm-strip", // used to discard symbols from binary files to reduce their size 106 "llvm-ar", // used for creating and modifying archive files [all …]
|
| /third_party/mesa3d/docs/relnotes/ |
| D | 22.2.0.rst | 1 Mesa 22.2.0 Release Notes / 2022-09-21 20 --------------- 24 b1f9c8fd08f2cae3adf83355bef4d2398e8025f44947332880f2d0066bdafa8c mesa-22.2.0.tar.xz 29 ------------ 31 - WGL_ARB_create_context_robustness 33 - d3d12 ARB_robust_buffer_access_behavior 35 - VK_EXT_robustness2 for lavapipe 37 - VK_EXT_image_2d_view_of_3d on RADV 39 - zink and d3d12 GL_EXT_memory_object_win32 and GL_EXT_semaphore_win32 support 41 - vertexAttributeInstanceRateZeroDivisor support for lavapipe [all …]
|
| D | 23.1.0.rst | 1 Mesa 23.1.0 Release Notes / 2023-05-10 20 --------------- 24 a9dde3c76571c4806245a05bda1cceee347c3267127e9e549e4f4e225d92e992 mesa-23.1.0.tar.xz 28 ------------ 30 - VK_EXT_pipeline_library_group_handles on RADV 31 - VK_EXT_image_sliced_view_of_3d on RADV/GFX10+ 32 - VK_KHR_map_memory2 on ANV and RADV 33 - fullyCoveredFragmentShaderInputVariable on RADV/GFX9+ 34 - VK_EXT_discard_rectangles version 2 on RADV 35 - VK_EXT_graphics_pipeline_library on RADV [all …]
|
| D | 24.2.0.rst | 1 Mesa 24.2.0 Release Notes / 2024-08-14 20 --------------- 24 c02bb72cea290f78b11895a0c95c7c92394f180d7ff66d4a762ec6950a58addf mesa-24.2.0.tar.xz 28 ------------ 30 - VK_KHR_dynamic_rendering_local_read on RADV 31 - VK_EXT_legacy_vertex_attributes on lavapipe, ANV, Turnip and RADV 32 - VK_MESA_image_alignment_control on RADV 33 - VK_EXT_shader_replicated_composites on ANV, dozen, hasvk, lavapipe, nvk, RADV, and Turnip 34 - VK_KHR_maintenance5 on v3dv 35 - VK_KHR_maintenance7 on RADV [all …]
|
| D | 23.2.1.rst | 1 Mesa 23.2.1 Release Notes / 2023-09-28 23 --------------- 27 64de0616fc2d801f929ab1ac2a4f16b3e2783c4309a724c8a259b20df8bbc1cc mesa-23.2.1.tar.xz 32 ------------ 34 - VK_EXT_attachment_feedback_loop_dynamic_state on RADV 36 - extendedDynamicState3SampleLocationsEnable on RADV 38 - VK_EXT_dynamic_rendering_unused_attachments on RADV 40 - VK_EXT_mesh_shader on lavapipe 42 - OpenGL 3.1 on Asahi 44 - OpenGL ES 3.0 on Asahi [all …]
|
| D | 25.0.0.rst | 1 Mesa 25.0.0 Release Notes / 2025-02-19 20 ------------- 24 SHA256: 96a53501fd59679654273258c6c6a1055a20e352ee1429f0b123516c7190e5b0 mesa-25.0.0.tar.xz 25 …36f614d322033d4d465307ddcd983f9f3afb1310e132ec3186a085d261c95493a0c460b2ec59ce8 mesa-25.0.0.tar.xz 29 ------------ 31 - cl_khr_depth_images in rusticl 32 - Vulkan 1.4 on radv/gfx8+ 33 - VK_KHR_dedicated_allocation on panvk 34 - VK_KHR_global_priority on panvk 35 - VK_KHR_index_type_uint8 on panvk [all …]
|
| D | 20.2.0.rst | 1 Mesa 20.2.0 Release Notes / 2020-09-28 20 --------------- 24 63f0359575d558ef98dd78adffc0df4c66b76964ebf603b778b7004964191d30 mesa-20.2.0.tar.xz 28 ------------ 30 - GL_ARB_compute_variable_group_size on Iris. 32 - GL_ARB_gpu_shader5 on llvmpipe 34 - GL_ARB_post_depth_coverage on llvmpipe 36 - GLES 3.2 on llvmpipe 38 - GL_EXT_shader_group_vote on GLES3. 40 - GL_EXT_texture_shadow_lod on llvmpipe [all …]
|
| /third_party/NuttX/ |
| D | ReleaseNotes | 14 "nuttx-6.27"). 16 NuttX-0.1.0 17 ----------- 23 This release has been verified on both the Linux user-mode and C5471 25 for the C5471 can be found in arch/c5471/doc/test-results.txt. 29 NuttX-0.1.1 30 ----------- 42 This release has been verified on the Linux user-mode platform, the 51 NuttX-0.1.2 52 ----------- [all …]
|