aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorFahima Mokhtari <df_mokhtari@esi.dz>2022-04-25 02:36:08 -0400
committerGitHub <noreply@github.com>2022-04-25 08:36:08 +0200
commitc889aef90c8deca0fd0d0e65faab5a3c0b4100d0 (patch)
tree9cfccef69d436f484b5c2de2e0741213f719b702 /docs
parent131df97d431404458e805009bda794abfb00f45f (diff)
docs: update the documentation of new OS support (#3108)
* docs: update the documentation of new OS support
Diffstat (limited to 'docs')
-rw-r--r--docs/adding_new_os_support.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/adding_new_os_support.md b/docs/adding_new_os_support.md
index e78be2e06..ea25d726d 100644
--- a/docs/adding_new_os_support.md
+++ b/docs/adding_new_os_support.md
@@ -18,7 +18,7 @@ The intended function will be called according to the target kernel as defined b
## Build files `pkg/`
- The OS name is added to `pkg/build/build.go` along with the supported architecture
-- Creating a file that builds the image for the targeted kernel under `pkg/build/`. There is a file per each of the supported OSes by Syzkaller where the name pattern is `GOOS.go`.
+- Creating a file that builds the image for the targeted kernel under `pkg/build/`. This file contains functions for configuring the build of the bootable image, for building it, and for generate SSH keys which will be used by Syzkaller in order to access the VM. There is a file per each of the supported OSes by Syzkaller where the name pattern is `GOOS.go`.
- Adding the given target to the `s/makefile/Makefile/`.