DragonFlyBSD Kernel Audit
DF-2202 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-2202 build script — builds the userspace trigger stub that demonstrates
# the indexing defect in isolation. The kernel-side fix is built separately
# on the guest (see README.md / VERDICT.md / fix_build.log).
set -e
cd "$(dirname "$0")"
cc -Wall -Wextra -o df2202_trigger df2202_trigger.c
echo "BUILD_EXIT=$?"
ls -l df2202_trigger