DragonFlyBSD Kernel Audit
DF-0844 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0844 build script
set -e
echo "Building dirhash_oob (userspace OOB harness)..."
cc -O2 -o dirhash_oob dirhash_oob.c
echo "Building dirhash_patch (image patcher)..."
cc -O2 -o dirhash_patch dirhash_patch.c
echo "BUILD_EXIT=$?"
ls -l dirhash_oob dirhash_patch