Skip to content

Commit

Permalink
docs: update symbolicate guide to include symbol server daemon config…
Browse files Browse the repository at this point in the history
… example
  • Loading branch information
blacktop committed Sep 20, 2024
1 parent 74a8933 commit 91ccb2b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 7 deletions.
7 changes: 4 additions & 3 deletions api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1588,6 +1588,9 @@
"200": {
"$ref": "#/responses/successResponse"
},
"409": {
"$ref": "#/responses/genericError"
},
"500": {
"$ref": "#/responses/genericError"
}
Expand Down Expand Up @@ -4641,9 +4644,7 @@
"IsSeed": {
"type": "boolean"
},
"RestoreBuildGroup": {
"type": "string"
},
"RestoreBuildGroup": {},
"RestoreLongVersion": {
"type": "string"
},
Expand Down
22 changes: 21 additions & 1 deletion www/docs/guides/symbolicate.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,27 @@ database:
host: localhost
port: 5432
user: blacktop
```
```
:::info
To add kernel symbolication
Get the signatures
```bash
git clone https://github.com/blacktop/symbolicator.git
```

Add them to your `~/.config/ipsw/config.yml`

```yaml
daemon:
sigs-dir: /path/to/blacktop/symbolicator/kernel
```
> For more information see the blog [Kernel Symbolication](https://blacktop.github.io/ipsw/blog/kernel-symbolication)
:::
### Start `ipswd`

Expand Down
7 changes: 4 additions & 3 deletions www/static/api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1588,6 +1588,9 @@
"200": {
"$ref": "#/responses/successResponse"
},
"409": {
"$ref": "#/responses/genericError"
},
"500": {
"$ref": "#/responses/genericError"
}
Expand Down Expand Up @@ -4641,9 +4644,7 @@
"IsSeed": {
"type": "boolean"
},
"RestoreBuildGroup": {
"type": "string"
},
"RestoreBuildGroup": {},
"RestoreLongVersion": {
"type": "string"
},
Expand Down

0 comments on commit 91ccb2b

Please sign in to comment.