From c889aef90c8deca0fd0d0e65faab5a3c0b4100d0 Mon Sep 17 00:00:00 2001 From: Fahima Mokhtari Date: Mon, 25 Apr 2022 02:36:08 -0400 Subject: docs: update the documentation of new OS support (#3108) * docs: update the documentation of new OS support --- docs/adding_new_os_support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/adding_new_os_support.md') 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/`. -- cgit mrf-deployment