DF-2401 / run.sh
#!/bin/sh echo "=== DF-2401 hardware gate ===" pciconf -l 2>&1 | grep -iE "0x030000|0x030200|8086:2a|8086:2770|8086:2562|intel.*igd" || echo " no Intel IGD" ls /dev/dri* /dev/agpgart 2>&1 || echo " no DRM/AGP device nodes" kldstat 2>&1 | grep -iE "i915|agp|intel" || echo " no i915/agp modules loaded" echo "==> intel_gtt_insert_page (Intel IGD GTT) needs Intel integrated graphics (absent)." exit 0 |