From 91ccb2b2252d2e7787bf7ad3ee33f73cc944a881 Mon Sep 17 00:00:00 2001 From: blacktop Date: Thu, 19 Sep 2024 19:11:19 -0600 Subject: [PATCH] docs: update symbolicate guide to include symbol server daemon config example --- api/swagger.json | 7 ++++--- www/docs/guides/symbolicate.md | 22 +++++++++++++++++++++- www/static/api/swagger.json | 7 ++++--- 3 files changed, 29 insertions(+), 7 deletions(-) diff --git a/api/swagger.json b/api/swagger.json index 0946bbb94..35b675fd5 100644 --- a/api/swagger.json +++ b/api/swagger.json @@ -1588,6 +1588,9 @@ "200": { "$ref": "#/responses/successResponse" }, + "409": { + "$ref": "#/responses/genericError" + }, "500": { "$ref": "#/responses/genericError" } @@ -4641,9 +4644,7 @@ "IsSeed": { "type": "boolean" }, - "RestoreBuildGroup": { - "type": "string" - }, + "RestoreBuildGroup": {}, "RestoreLongVersion": { "type": "string" }, diff --git a/www/docs/guides/symbolicate.md b/www/docs/guides/symbolicate.md index 9c74302ff..7e1f05834 100644 --- a/www/docs/guides/symbolicate.md +++ b/www/docs/guides/symbolicate.md @@ -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` diff --git a/www/static/api/swagger.json b/www/static/api/swagger.json index 0946bbb94..35b675fd5 100644 --- a/www/static/api/swagger.json +++ b/www/static/api/swagger.json @@ -1588,6 +1588,9 @@ "200": { "$ref": "#/responses/successResponse" }, + "409": { + "$ref": "#/responses/genericError" + }, "500": { "$ref": "#/responses/genericError" } @@ -4641,9 +4644,7 @@ "IsSeed": { "type": "boolean" }, - "RestoreBuildGroup": { - "type": "string" - }, + "RestoreBuildGroup": {}, "RestoreLongVersion": { "type": "string" },