DragonFlyBSD Kernel Audit
DF-2002 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-2002 userspace logic PoC build.
# This compiles the verbatim kernel arithmetic in userspace to demonstrate
# the OOB; the in-kernel sink is HW-gated behind an Atheros AR9280 NIC.
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o poc_df_pwrtable poc_df_pwrtable.c
echo "BUILD_OK poc_df_pwrtable"