DragonFlyBSD Kernel Audit
DF-1040 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-1040 harness build — compiles the userspace logic harness on the guest.
# (The actual trigger requires PCMCIA bridge hardware not present on this guest;
#  the harness proves the offset-arithmetic primitive at the object level.)
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o cis_oob_harness cis_oob_harness.c
echo "BUILD_OK: cis_oob_harness"
ls -l cis_oob_harness