DragonFlyBSD Kernel Audit
DF-0887 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0887 build — compiles the inode patcher + harness inside the guest.
set -e
cd "$(dirname "$0")"
cc -o craft_img craft_img.c
cc -o harness harness.c
echo "BUILD_OK: craft_img + harness"
ls -l craft_img harness