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

# 设备型号数据库

macOS 配套应用的 **实例** UI 会将 Apple 模型标识符映射为友好名称（`iPad16,6` -> “iPad Pro 13-inch (M4)”，`Mac16,6` -> “MacBook Pro (14-inch, 2024)”）。`DeviceModelCatalog` 还会使用标识符前缀（回退到设备系列）为每台设备选择一个 SF Symbol。

`apps/macos/Sources/OpenClaw/Resources/DeviceModels/` 中的文件：

| 文件                                     | 用途                     |
| -------------------------------------- | ---------------------- |
| `ios-device-identifiers.json`          | iOS/iPadOS 标识符 -> 名称映射 |
| `mac-device-identifiers.json`          | Mac 标识符 -> 名称映射        |
| `NOTICE.md`                            | 固定的上游 commit SHA       |
| `LICENSE.apple-device-identifiers.txt` | 上游 MIT 许可证             |

## 数据来源

从 MIT 许可的 `kyle-seongwoo-jun/apple-device-identifiers` GitHub 仓库引入。JSON 文件固定到 `NOTICE.md` 中记录的 commit SHA，以保持构建确定性。

## 更新数据库

1. 选择要固定的上游 commit SHA（一个用于 iOS，一个用于 macOS）。
2. 使用新的 SHA 更新 `apps/macos/Sources/OpenClaw/Resources/DeviceModels/NOTICE.md`。
3. 重新下载固定到这些 commit 的 JSON 文件：

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
IOS_COMMIT="<commit sha for ios-device-identifiers.json>"
MAC_COMMIT="<commit sha for mac-device-identifiers.json>"

curl -fsSL "https://raw.githubusercontent.com/kyle-seongwoo-jun/apple-device-identifiers/${IOS_COMMIT}/ios-device-identifiers.json" \
  -o apps/macos/Sources/OpenClaw/Resources/DeviceModels/ios-device-identifiers.json

curl -fsSL "https://raw.githubusercontent.com/kyle-seongwoo-jun/apple-device-identifiers/${MAC_COMMIT}/mac-device-identifiers.json" \
  -o apps/macos/Sources/OpenClaw/Resources/DeviceModels/mac-device-identifiers.json
```

4. 确认 `LICENSE.apple-device-identifiers.txt` 仍与上游一致；如果上游许可证已更改，请替换它。
5. 验证 macOS 应用可以干净构建：

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
swift build --package-path apps/macos
```

## 相关内容

* [节点](/zh-CN/nodes)
* [节点故障排查](/zh-CN/nodes/troubleshooting)
