DF-0351 / build.sh
#!/bin/sh # DF-0351 build — userspace harness replicating the kernel's HWMP metric # accumulation arithmetic. No WiFi HW / kernel deps needed. # Run on the audit guest (maxx, uid 1001) — has gcc 8.3. set -e cd "$(dirname "$0")" cc -O2 -Wall -o hwmp_metric_overflow hwmp_metric_overflow.c echo "BUILD_EXIT=$?" ls -l hwmp_metric_overflow |