DragonFlyBSD Kernel Audit
DF-0664 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0664 — there is no C source to build (the cited file is dead code).
# This script just re-prints the structural evidence as a "build/run".
set -e
cd "$(dirname "$0")"
echo "[DF-0664] cited file is dead code; nothing to compile."
echo "[DF-0664] verifying dead-code status:"
grep -n "ng_device" ../../sys/conf/files || true
echo "[DF-0664] (only netgraph7/ng_device.c is registered)"