Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

ac-os: pass USE_SDL=1 to make, restore nomodeset for now

build_binary was not passing USE_SDL=1, so the binary had no SDL3
support compiled in. Without SDL3 and without nomodeset, i915 KMS
takes over but DRM dumb buffers fail → black screen.

Restore nomodeset so DRM dumb buffers work via efifb. Keep quiet
loglevel=3 for clean direct-boot. SDL3 will handle KMS when it's
actually compiled in (USE_SDL=1 now passed to make).

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

+2 -2
+1 -1
fedac/native/ac-os
··· 49 49 # Run make and capture exit code — version strings frozen at top of script 50 50 mkdir -p "${BUILD_DIR}" 51 51 local MAKE_LOG="${BUILD_DIR}/.make.log" 52 - make -j$(nproc) CC="${CC_USE}" BUILD_TS="${AC_BUILD_TS}" GIT_HASH="${AC_GIT_HASH}" BUILD_NAME="${AC_BUILD_NAME}" > "${MAKE_LOG}" 2>&1 52 + make -j$(nproc) CC="${CC_USE}" USE_SDL=1 BUILD_TS="${AC_BUILD_TS}" GIT_HASH="${AC_GIT_HASH}" BUILD_NAME="${AC_BUILD_NAME}" > "${MAKE_LOG}" 2>&1 53 53 local MAKE_RC=$? 54 54 grep -E "Built:|error:" "${MAKE_LOG}" || true 55 55 if [ ${MAKE_RC} -ne 0 ]; then
+1 -1
fedac/native/kernel/config-minimal
··· 424 424 CONFIG_LEGACY_VSYSCALL_XONLY=y 425 425 # CONFIG_LEGACY_VSYSCALL_NONE is not set 426 426 CONFIG_CMDLINE_BOOL=y 427 - CONFIG_CMDLINE="console=tty0 quiet loglevel=3 vt.global_cursor_default=0 init=/init mitigations=off snd_intel_dspcfg.dsp_driver=0 snd_hda_intel.power_save=0 nmi_watchdog=0 tsc=reliable no_timer_check acpi_backlight=native thinkpad_acpi.brightness_enable=1 i8042.reset i8042.nomux efi=noruntime" 427 + CONFIG_CMDLINE="console=tty0 quiet loglevel=3 vt.global_cursor_default=0 init=/init mitigations=off snd_intel_dspcfg.dsp_driver=0 snd_hda_intel.power_save=0 nmi_watchdog=0 tsc=reliable no_timer_check acpi_backlight=native thinkpad_acpi.brightness_enable=1 i8042.reset i8042.nomux nomodeset efi=noruntime" 428 428 # CONFIG_CMDLINE_OVERRIDE is not set 429 429 CONFIG_MODIFY_LDT_SYSCALL=y 430 430 # CONFIG_STRICT_SIGALTSTACK_SIZE is not set