Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: kernel build — clean stale objects before compile

The cached kernel source in Docker has leftover .o files from previous
builds. When config changes, make fails with 'drivers Error 2'. Adding
make clean before compile fixes the stale object mismatch.

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

+2 -2
+2 -2
fedac/native/docker-build.sh
··· 334 334 scripts/config --enable DRM_SIMPLEDRM 335 335 make olddefconfig 2>&1 | tail -1 336 336 337 - # Clean initramfs object to force re-embed 338 - rm -f usr/initramfs_data.o usr/.initramfs_data.o.cmd 337 + # Clean stale objects to avoid config mismatch errors 338 + make clean 2>/dev/null || true 339 339 340 340 # Build 341 341 log " Compiling ($(nproc) cores)..."