Monorepo for Aesthetic.Computer aesthetic.computer

revert: keep kernel 6.19.9 — the boot issue is not kernel version

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

+3 -3
+2 -2
fedac/native/Dockerfile.builder
··· 45 45 RUN mkdir -p /cache && cd /cache \ 46 46 && curl -sL https://bellard.org/quickjs/quickjs-2024-01-13.tar.xz | tar xJ \ 47 47 && ln -sf quickjs-2024-01-13 quickjs \ 48 - && curl -sL https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.14.2.tar.xz | tar xJ \ 49 - && echo "=== Cached: QuickJS + Linux 6.14.2 ===" 48 + && curl -sL https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.19.9.tar.xz | tar xJ \ 49 + && echo "=== Cached: QuickJS + Linux 6.19.9 ===" 50 50 51 51 # ── Install esbuild for KidLisp bundling ── 52 52 RUN npm install -g esbuild
+1 -1
fedac/native/docker-build.sh
··· 8 8 OUT="${AC_OUT:-/out}" 9 9 NATIVE="$SRC/fedac/native" 10 10 BUILD="$NATIVE/build" 11 - KVER="${KERNEL_VERSION:-6.14.2}" 11 + KVER="${KERNEL_VERSION:-6.19.9}" 12 12 KMAJOR="${KVER%%.*}" 13 13 MEDIA_LAYOUT_LIB="$NATIVE/scripts/media-layout.sh" 14 14