Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

ac-os: check build/firmware/ before host firmware dir

Skip copying firmware blobs that are already staged in the build
directory from a previous run or manual download. Fixes builds in
containers where /usr/lib/firmware lacks i915 DMC files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+4
+4
fedac/native/ac-os
··· 557 557 local rel="$1" 558 558 local dst="$2/$rel" 559 559 mkdir -p "$(dirname "${dst}")" 560 + # Already staged from a previous run or manual download 561 + if [ -f "${dst}" ]; then 562 + return 0 563 + fi 560 564 if [ -f "${HOST_FW_DIR}/${rel}" ]; then 561 565 cp -L "${HOST_FW_DIR}/${rel}" "${dst}" 562 566 return 0