> ## Documentation Index
> Fetch the complete documentation index at: https://dragonwingdocs.qualcomm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 向工作区添加第三方层

您可以通过更新 KAS CI 配置文件，将任何 OpenEmbedded meta 层添加到工作区。

要将第三方 OpenEmbedded 层添加到工作区，请执行以下操作：

1. 从您 fork 或本地克隆的 `meta-qcom` 层中打开 KAS CI YAML 文件 `meta-qcom/ci/qcom-distro.yml`。

2. 在 `repos:` 部分，使用以下格式为所需的层添加条目：

   ```text theme={null}
   Layer Name:
     url: URL to the layer
     branch: Branch name
   ```

   例如，`meta-virtualization` 层的添加方式如下：

   ```text theme={null}
   meta-virtualization:
     url: https://git.yoctoproject.org/meta-virtualization
     branch: master
   ```

更新 KAS CI 文件后，使用 KAS 命令克隆并初始化新添加的层，使其成为工作区的一部分。
