diff options
author | hexcoder- <heiko@hexco.de> | 2021-01-02 19:59:06 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-01-02 19:59:06 +0100 |
commit | d2a1f05a69afd19ae6017575e0e620fc07827bad (patch) | |
tree | 32bfc80e13592c77a7f0fde49a920e66b476b15f /afl-system-config | |
parent | d687fbdfb4d3fc1485c9ab9d46da2546ae243f4a (diff) | |
download | afl++-d2a1f05a69afd19ae6017575e0e620fc07827bad.tar.gz |
add first support for DragonFly OS
Diffstat (limited to 'afl-system-config')
-rwxr-xr-x | afl-system-config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/afl-system-config b/afl-system-config index 7031544c..919932c3 100755 --- a/afl-system-config +++ b/afl-system-config @@ -58,6 +58,11 @@ if [ "$PLATFORM" = "OpenBSD" ] ; then echo 'System security features cannot be disabled on OpenBSD.' DONE=1 fi +if [ "$PLATFORM" = "DragonFly" ] ; then + echo + echo 'System security features cannot be disabled on DragonFly.' + DONE=1 +fi if [ "$PLATFORM" = "NetBSD" ] ; then { #echo It is recommended to enable unprivileged users to set cpu affinity |