Kernel 7.1 unpacks the initramfs asynchronously, which races /init: the early /proc, /sys, /dev, and /run mounts fail with EPERM while unpacking settles, so plymouthd exits when it can't read /proc/cmdline and encrypted boots fall back to an unthemed text LUKS prompt. Boot still completes only because the kernel passes key=value cmdline params to init as environment variables and devtmpfs is automounted. Force synchronous unpacking via initramfs_async=0 until the race is fixed upstream: in the packaged defaults for fresh installs, and via migration for existing systems. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
TARGET_OS_NAME="Omarchy"
|
|
|
|
KERNEL_CMDLINE[default]+=" quiet splash loglevel=0 systemd.show_status=false rd.udev.log_level=0 vt.global_cursor_default=0"
|
|
|
|
# Kernel 7.1 unpacks the initramfs asynchronously, which races /init: the
|
|
# early /proc, /sys, /dev, and /run mounts fail while unpacking settles, so
|
|
# plymouthd exits when it can't read /proc/cmdline and encrypted boots fall
|
|
# back to an unthemed text LUKS prompt. Unpack synchronously until the race
|
|
# is fixed upstream.
|
|
KERNEL_CMDLINE[default]+=" initramfs_async=0"
|
|
|
|
CUSTOM_UKI_NAME="omarchy"
|
|
ENABLE_LIMINE_FALLBACK=yes
|
|
|
|
# Find and add other bootloaders
|
|
FIND_BOOTLOADERS=yes
|
|
|
|
BOOT_ORDER="*, *fallback, Snapshots"
|
|
|
|
# Snapper is configured with NUMBER_LIMIT="5" (see default/snapper/root), but
|
|
# limine-snapper-sync can see the newly created sixth snapshot before cleanup
|
|
# restores the retained snapshot count to 5. Allow for that creation window:
|
|
# Snapshot limit mismatch: 6 Snapper snapshots exceed configured
|
|
# MAX_SNAPSHOT_ENTRIES=5
|
|
MAX_SNAPSHOT_ENTRIES=6
|
|
|
|
SNAPSHOT_FORMAT_CHOICE=5
|