DF-1245 / build.sh
#!/bin/sh # DF-1245 build: validate fix.diff compiles. No runtime trigger PoC (needs AMD Evergreen GPU). set -e cd "$(dirname "$0")" echo "git apply --check fix.diff => $(git apply --check fix.diff 2>&1 && echo OK)" echo "Fix was compile-validated against the radeon module build (see fix_build_radeon.log)." echo "No runtime trigger PoC: requires AMD Evergreen GPU (absent from QEMU guest)." |