DF-0547 / run.sh
#!/bin/sh # DF-0547: netmap is not loadable on this guest, so this script just runs # the conceptual PoC which prints the explanation. The actual bug is # documented in VERDICT.md and traced at the source level. ./df0547 echo "---" echo "build attempt for netmap.ko (expected to fail):" cd /usr/src/sys/net/netmap 2>/dev/null && make 2>&1 | head -5 || \ echo "(source tree not accessible)" |