
* format all (clang format 13) * added clang-format check * re-add missing newline * cargo doc was missing * more brackets * fixed fmt workflow * clang format * shellcheck * install clang-format-13 * update ubuntu for maximum clang-formattability * yml whitespaces * fmt * shellcheck only for .sh * oops path * ignored shellcheck warning
12 lines
364 B
Bash
Executable File
12 lines
364 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2016
|
|
echo "Warning: this script is not a proper fix to do LLMP fuzzing." \
|
|
'Instead, run `afl-persistent-config` with SIP disabled.'
|
|
|
|
sudo sysctl -w kern.sysv.shmmax=524288000
|
|
sudo sysctl -w kern.sysv.shmmin=1
|
|
sudo sysctl -w kern.sysv.shmseg=32
|
|
sudo sysctl -w kern.sysv.shmall=131072000
|
|
sudo sysctl -w kern.maxprocperuid=512
|