
In order to match NetBSD-style imports of external code, the library has been restructured. The full lwIP source tree is imported, except for a few .git* files in its root directory, into dist/. The MINIX 3 Makefiles and other custom files are located in lib/. Finally, since we need to apply a number of small patches to lwIP, these patches are stored in patches/, in addition to being applied to the lwIP tree. The currently imported version of lwIP is taken from its master branch sometime after the 2.0.1 release, specifically git-7ffe5bf. Change-Id: Ie03c4fa36fa928870263c191205d6d93f652a3cc
32 lines
595 B
Bash
32 lines
595 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "This script will make pcap files from the afl-fuzz crash/hang files"
|
|
echo "It needs hexdump and text2pcap"
|
|
echo "Please give output directory as argument"
|
|
exit 2
|
|
fi
|
|
|
|
for i in `ls $1/crashes/id*`
|
|
do
|
|
PCAPNAME=`echo $i | grep pcap`
|
|
if [ -z "$PCAPNAME" ]; then
|
|
hexdump -C $i > $1/$$.tmp
|
|
text2pcap $1/$$.tmp ${i}.pcap
|
|
fi
|
|
done
|
|
for i in `ls $1/hangs/id*`
|
|
do
|
|
PCAPNAME=`echo $i | grep pcap`
|
|
if [ -z "$PCAPNAME" ]; then
|
|
hexdump -C $i > $1/$$.tmp
|
|
text2pcap $1/$$.tmp ${i}.pcap
|
|
fi
|
|
done
|
|
rm -f $1/$$.tmp
|
|
|
|
echo
|
|
echo "Created pcap files:"
|
|
ls $1/*/*.pcap
|