aboutsummaryrefslogtreecommitdiffstats
path: root/docs/freebsd
Commit message (Collapse)AuthorAgeFilesLines
* docs: fix misspellingsTaras Madan2025-08-192-2/+2
| | | | Gemini CLI experiments side effect.
* docs/freebsd: update with notes on slirp-based networkingMark Johnston2024-05-271-4/+12
|
* docs/freebsd: update the default branch of freebsd-srcP1umer2022-08-261-1/+1
|
* /docs: update instructions for source checkoutAdam Goska2022-01-191-2/+2
| | | | | | Updated documentation regarding source code checkout from the legacy gopath mode 'go get' to 'git clone'. Fixes #2828
* docs/freebsd: update README.md executor compile command on guestAdam Goska2021-12-101-1/+1
| | | | | | | The instructions for compiling the executor files on the guest machine referenced executor_freebsd.cc which no longer exists and is now executor.cc. The DGOOS=freebsd flag is changed to DGOOS_freebsd=1 and DGOARCH_amd64=1 added to compile syz-executor successfully
* docs/freebsd: update VM image link for 14Mark Johnston2021-03-031-1/+1
|
* docs/freebsd: add more detailstigergao992020-10-231-15/+41
| | | | | | Miscellaneous hints on growing disk, kernel src, and network configs. Moved grow disk to before booting. Build kernel on host.
* docs/freebsd: clarify that the dataset name is an exampleMark Johnston2020-08-111-2/+2
|
* docs/freebsd: update the "missing things" listMark Johnston2020-08-111-5/+3
| | | | | Some items have already been implemented. Add some new items to work towards.
* docs/freebsd: install golangci-lint on FreeBSDMichael Tuexen2020-06-041-1/+1
| | | | This is required for gmake presubmit.
* docs: update source download instructionsDmitry Vyukov2020-05-021-1/+1
| | | | | | | | Since we don't don't have auto-generated files checked-in, go get fails to parse packages. go get only prog package without building, this will checkout the whole repo anyway and that's the only thing we need.
* Add a bhyve VM backend (#1150)Mark Johnston2019-05-111-5/+48
| | | | | | | | | | | * vm: add bhyve support bhyve is FreeBSD's native hypervisor. Because it is missing snapshot support and user networking, some additional configuration on the host is required. However, unlike QEMU on FreeBSD, bhyve can make use of hardware virtualization features and is thus faster. * docs/freebsd: document bhyve support
* docs/freebsd: fix typoMichael Tuexen2019-04-301-1/+1
| | | | Thanks to Greg for making me aware of it.
* docs/freebsd: update found_bugs.mdMichael Tuexen2019-04-301-3/+26
|
* docs/freebsd: updates based on recent progressMark Johnston2019-03-121-59/+83
| | | | | | | | | | | | | | | | | | | The setup instructions now reflect the steps needed to fuzz a recent FreeBSD-CURRENT system. The previous instructions were written for 11.0-era FreeBSD and can be simplified. Steps required only on older versions (e.g., 11.2 or 12.0) can be re-added if there is demand, but it is expect that most syzkaller users are FreeBSD developers running -CURRENT. - Remove completed TODOs. - Document how to build and install a KCOV-enabled kernel. - Update set-up steps for a FreeBSD host. The newly added llvm metaport makes it unnecessary to compile clang-format. The stock QEMU package works fine on FreeBSD-CURRENT and it is not necessary to compile QEMU binaries anymore. - Document steps for preparing an image to be fuzzed under GCE as well as QEMU. (The required steps are identical aside from syz-manager configuration.)
* docs/freebsd: add description for setting up a FreeBSD hostMichael Tüxen2019-03-011-1/+31
| | | | | | | | * Add description for setting up FreeBSD host * Fix typo * Fix comments provided by Dmitry
* docs/freebsd: add missing found bugMichael Tüxen2019-03-011-0/+1
| | | | | When committing the fix the the FreeBSD repo, I missed the line stating that the issue was found by running syzkaller. So this entry was missed...
* docs: add FreeBSD found bugsEd Maste2019-02-261-0/+10
|
* docs: sort FreeBSD bugs most recent firstEd Maste2019-02-261-2/+2
|
* docs: move OS-specific docs to subdirsDmitry Vyukov2019-02-262-0/+108
Move freebsd, fuchsia, gvisor docs into own subdirs as we do for all other OSes. Add freebsd found_bugs.md.