DragonFlyBSD Kernel Audit
DF-0981 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0981 build script (run as the unprivileged maxx user on the guest).
# Builds the userspace harness that faithfully replicates the
# run_bulk_rx_callback() aggregated-frame / dmalen / m_copydata logic.
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o run_aggr_oob run_aggr_oob.c
echo "BUILD_OK: run_aggr_oob"
ls -l run_aggr_oob