aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2021-01-02 19:59:06 +0100
committerhexcoder- <heiko@hexco.de>2021-01-02 19:59:06 +0100
commitd2a1f05a69afd19ae6017575e0e620fc07827bad (patch)
tree32bfc80e13592c77a7f0fde49a920e66b476b15f
parentd687fbdfb4d3fc1485c9ab9d46da2546ae243f4a (diff)
downloadafl++-d2a1f05a69afd19ae6017575e0e620fc07827bad.tar.gz
add first support for DragonFly OS
-rwxr-xr-xafl-system-config5
-rwxr-xr-xunicorn_mode/build_unicorn_support.sh8
2 files changed, 12 insertions, 1 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
diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh
index f1306a06..d6fc58e4 100755
--- a/unicorn_mode/build_unicorn_support.sh
+++ b/unicorn_mode/build_unicorn_support.sh
@@ -44,7 +44,7 @@ echo "[*] Performing basic sanity checks..."
PLT=`uname -s`
-if [ ! "$PLT" = "Linux" ] && [ ! "$PLT" = "Darwin" ] && [ ! "$PLT" = "FreeBSD" ] && [ ! "$PLT" = "NetBSD" ] && [ ! "$PLT" = "OpenBSD" ]; then
+if [ ! "$PLT" = "Linux" ] && [ ! "$PLT" = "Darwin" ] && [ ! "$PLT" = "FreeBSD" ] && [ ! "$PLT" = "NetBSD" ] && [ ! "$PLT" = "OpenBSD" ] && [ ! "$PLT" = "DragonFly" ]; then
echo "[-] Error: Unicorn instrumentation is unsupported on $PLT."
exit 1
@@ -89,6 +89,12 @@ if [ "$PLT" = "FreeBSD" ]; then
TARCMD=gtar
fi
+if [ "$PLT" = "DragonFly" ]; then
+ MAKECMD=gmake
+ CORES=`sysctl -n hw.ncpu`
+ TARCMD=tar
+fi
+
if [ "$PLT" = "NetBSD" ] || [ "$PLT" = "OpenBSD" ]; then
MAKECMD=gmake
CORES=`sysctl -n hw.ncpu`