added convenience script to create a ramdisk for AFL fuzzing runs

This commit is contained in:
Michael Rash 2015-03-22 22:18:04 -04:00
parent ea7f22f842
commit 5aacd6ae21

View File

@ -0,0 +1,8 @@
#!/bin/sh -x
RAMDISK=/tmp/afl-ramdisk
mkdir $RAMDISK && chmod 777 $RAMDISK
mount -t tmpfs -o size=768M tmpfs $RAMDISK
git clone . $RAMDISK/fwknop.git
exit $?