DragonFlyBSD Kernel Audit
DF-0289 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
#!/bin/sh
# DF-0289: No binary to build (code-analysis finding, requires WiFi HW)
# Verify the mesh code is present in the kernel
echo "nm /boot/kernel/kernel | grep ieee80211_mesh_rt_find"
nm /boot/kernel/kernel 2>/dev/null | grep ieee80211_mesh_rt_find || echo "(not found in base kernel; check wlan module)"
echo "BUILD_EXIT=$?"