New updates have killed the system [2025 Sept 26th]

My system was up-to-date yesterday.
This morning I woke up to 300+ new updates ready to install.

I installed them and clicked the “Restart” as asked only to see my system failing to boot by being stuck on black screen with a single white “_” on the screen.

I’m using Manjaro with BTRFS. As far as I’m aware, each update should trigger a snapshot creation. How do I rollback?

Seems like the best I can do now is access BIOS boot menu.
I still have Manjaro USB I used to install the system.

Tried some ChatGPT suggestions of mounting the system partitions installed on the actual disk and then manjaro-chroot’ing, but I just keep on getting errors of: “proc, sys, dev dirs don’t exist” and after that errors of some config files not existing in /mnt.

But I have no idea what I can do from this point.
Any ideas?

Edit: I think I’ve set “GRUB_TIMEOUT=0” before because of some “boot screen leading into boot screen” issue. So maybe, the system is showing nothing because of that? I have no idea.

You can always press ESC to load the bootmenu of grub. Also CTRL+ALT+F3 should open a tty on most cases.

as already mentioned, can you check if you’re able to switch to a tty via ctrl-alt-f3 ? if so log in and try to run

startplasma-wayland

does it boot in a graphical session ? this would be the first step.

The Ctrl+Alt+F3 does not seem to have any effect. I tried with both FnLk on and off.

The Esc has no effect as well. The machine goes from the Manufacturer logo straight and instantly into the described black screen with an underscore.

I even edited the GRUB_TIMEOUT to be 5s GRUB_TIMEOUT=5 by editing the config file via live USB. But still no luck.

The system boot does not appear to go far into the process as the Esc does not open the Grub bot menu.

The Ctrl+Alt+F3 has no effect.

any backup ? if so restore it, that is the fastest way.

1 Like

There should be automated per-update btrfs Timeshift snapshots available - that’s what I’m after.
Problem is idk how to restore them when the system just won’t boot.

Ok, I found a way from a live USB:

sudo journalctl --directory="/mnt/p4/@log/journal" --since today

The logs appear to cut off after the shutdown performed as part of the reboot after the updates.

Any successive boot attempts do not appear to be logged at all. I’m guessing the process fails before any logs are written to disk.

Any ideas as to what the point of failure up to that point could be?

Edit: I’ll add more details.
I have 4 partitions:

  1. EFI partition
  2. separate /boot partition (ext4)
  3. swap partition
  4. the rest of the disk is a single btrfs partition

Editing the file alone won’t make any difference. You also need to write the configuration to the actual boot loader, for which you need a chroot.

In order to chroot into btrfs, boot up from the live USB and follow these instructions — be sure to adapt them to your scenario, i.e. replace /dev/sda1 and /dev/sda2 by what’s applicable on your system. :point_down:

sudo -i
mount -t btrfs -o subvol=@ /dev/sda2 /mnt
mount -t btrfs -o subvol=@home /dev/sda2 /mnt/home
mount -t btrfs -o subvol=@log /dev/sda2 /mnt/var/log
mount -t btrfs -o subvol=@cache /dev/sda2 /mnt/var/cache
mount -t vfat  /dev/sda1 /mnt/boot/efi
mount --bind /dev /mnt/dev
mount -t proc proc /mnt/proc
mount -t sysfs sysfs /mnt/sys
mount -t efivarfs efivarfs /mnt/sys/firmware/efi/efivars
chroot /mnt /bin/bash
1 Like

When doing:
mount -t vfat /dev/sda1 /mnt/boot/efi
I get an error that mountpoint /mnt/boot/efi does not exist.

I’m guessing I need to mount my separate ext4 /boot partition first?
Or should I just create an empty /mnt/boot folder if /boot partition is not needed`?

That is correct, yes. I had not seen your post yet when I pasted the above — my apologies.

1 Like

What is the last lines of the update in /var/log/pacman.log? You can also check the /boot partition and edit the grub files to remove splash, quiet or any hiding of the menu itself.

Ok, I think I succeeded - no command has failed:

sudo -i

mount -t btrfs -o subvol=@ /dev/nvme0n1p4 /mnt
mount -t btrfs -o subvol=@home /dev/nvme0n1p4 /mnt/home
mount -t btrfs -o subvol=@log /dev/nvme0n1p4 /mnt/var/log
mount -t btrfs -o subvol=@cache /dev/nvme0n1p4 /mnt/var/cache

mount -t ext4 /dev/nvme0n1p2 /mnt/boot
mount -t vfat  /dev/nvme0n1p1 /mnt/boot/efi

mount --bind /dev /mnt/dev
mount -t proc proc /mnt/proc
mount -t sysfs sysfs /mnt/sys
mount -t efivarfs efivarfs /mnt/sys/firmware/efi/efivars

chroot /mnt /bin/bash

It shows I’m running as: [manjaro /]#.
Is it possible to see if I can run some sort of rollback from this point on?

I’d suggest to backup /boot/grub/grub.cfg and /boot/grub/grub-btrfs.cfg if available. Then remove any option in the file which may hide the boot menu. Reboot and see if you can load one of the BTRFS snapshots, if any available. Also check /var/log/pacman.log to understand what had happend during the update.

Here are my log and grub config files:

/var/log/pacman.log: ACTUALLY, never mind. looking at the timestamps, it’s probably live usb.

[2025-09-26T11:16:19+0000] [PACMAN] Running 'pacman --noconfirm --cachedir /var/cache/pacman/pkg --config /opt/mhwd/pacman-mhwd.conf --root / -Sy'
[2025-09-26T11:16:19+0000] [PACMAN] synchronizing package lists
[2025-09-26T11:16:19+0000] [PACMAN] Running 'pacman --noconfirm --cachedir /var/cache/pacman/pkg --config /opt/mhwd/pacman-mhwd.conf --root / --needed -S nvidia-utils nvidia-settings libxnvctrl nvidia-prime lib32-nvidia-utils linux612-nvidia'
[2025-09-26T11:16:24+0000] [ALPM] transaction started
[2025-09-26T11:16:24+0000] [ALPM] installed eglexternalplatform (1.2.1-1)
[2025-09-26T11:16:24+0000] [ALPM] installed egl-wayland (4:1.1.19-1)
[2025-09-26T11:16:24+0000] [ALPM] installed egl-gbm (1.1.2.1-1)
[2025-09-26T11:16:24+0000] [ALPM] installed egl-x11 (1.0.1-1)
[2025-09-26T11:16:26+0000] [ALPM] installed nvidia-utils (570.144-2)
[2025-09-26T11:16:26+0000] [ALPM-SCRIPTLET] Created symlink '/etc/systemd/system/systemd-suspend.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
[2025-09-26T11:16:26+0000] [ALPM-SCRIPTLET] Created symlink '/etc/systemd/system/systemd-hibernate.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
[2025-09-26T11:16:26+0000] [ALPM-SCRIPTLET] Created symlink '/etc/systemd/system/systemd-suspend-then-hibernate.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
[2025-09-26T11:16:26+0000] [ALPM-SCRIPTLET] Created symlink '/etc/systemd/system/systemd-hibernate.service.wants/nvidia-hibernate.service' → '/usr/lib/systemd/system/nvidia-hibernate.service'.
[2025-09-26T11:16:26+0000] [ALPM-SCRIPTLET] Created symlink '/etc/systemd/system/systemd-suspend.service.wants/nvidia-suspend.service' → '/usr/lib/systemd/system/nvidia-suspend.service'.
[2025-09-26T11:16:26+0000] [ALPM] installed nvidia-settings (570.144-2)
[2025-09-26T11:16:26+0000] [ALPM] installed libxnvctrl (570.144-1)
[2025-09-26T11:16:26+0000] [ALPM] installed nvidia-prime (1.0-5)
[2025-09-26T11:16:26+0000] [ALPM] installed lib32-nvidia-utils (570.144-1)
[2025-09-26T11:16:26+0000] [ALPM] installed linux612-nvidia (570.144-3)
[2025-09-26T11:16:29+0000] [ALPM] transaction completed
[2025-09-26T11:16:29+0000] [ALPM] running '20-systemd-sysusers.hook'...
[2025-09-26T11:16:29+0000] [ALPM-SCRIPTLET] Creating group 'nvidia-persistenced' with GID 143.
[2025-09-26T11:16:29+0000] [ALPM-SCRIPTLET] Creating user 'nvidia-persistenced' (NVIDIA Persistence Daemon) with UID 143 and GID 143.
[2025-09-26T11:16:29+0000] [ALPM] running '30-systemd-daemon-reload-system.hook'...
[2025-09-26T11:16:30+0000] [ALPM] running '30-systemd-udev-reload.hook'...
[2025-09-26T11:16:30+0000] [ALPM] running '30-systemd-update.hook'...
[2025-09-26T11:16:30+0000] [ALPM] running '60-depmod.hook'...
[2025-09-26T11:16:33+0000] [ALPM] running '90-mkinitcpio-install.hook'...
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux612.preset: 'default'
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET] ==> Using default configuration file: '/etc/mkinitcpio.conf'
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-6.12-x86_64 -g /boot/initramfs-6.12-x86_64.img
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET] ==> Starting build: '6.12.25-1-MANJARO'
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2025-09-26T11:16:33+0000] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2025-09-26T11:16:34+0000] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2025-09-26T11:16:34+0000] [ALPM-SCRIPTLET] ==> WARNING: cannot detect type of overlayfs root filesystem
[2025-09-26T11:16:34+0000] [ALPM-SCRIPTLET]   -> Running build hook: [microcode]
[2025-09-26T11:16:34+0000] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2025-09-26T11:16:34+0000] [ALPM-SCRIPTLET]   -> Running build hook: [kms]
[2025-09-26T11:16:38+0000] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2025-09-26T11:16:38+0000] [ALPM-SCRIPTLET]   -> Running build hook: [keymap]
[2025-09-26T11:16:38+0000] [ALPM-SCRIPTLET]   -> Running build hook: [consolefont]
[2025-09-26T11:16:38+0000] [ALPM-SCRIPTLET] ==> WARNING: consolefont: no font found in configuration
[2025-09-26T11:16:38+0000] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2025-09-26T11:16:39+0000] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2025-09-26T11:16:40+0000] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2025-09-26T11:16:40+0000] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2025-09-26T11:16:41+0000] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: '/boot/initramfs-6.12-x86_64.img'
[2025-09-26T11:16:41+0000] [ALPM-SCRIPTLET]   -> Early uncompressed CPIO image generation successful
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Initcpio image generation successful
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Running post hooks
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET]   -> Running post hook: [sbctl]
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] Secureboot key directory doesn't exist, not signing!
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Post processing done
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux612.preset: 'fallback'
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Using default configuration file: '/etc/mkinitcpio.conf'
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-6.12-x86_64 -g /boot/initramfs-6.12-x86_64-fallback.img -S autodetect
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET] ==> Starting build: '6.12.25-1-MANJARO'
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2025-09-26T11:16:42+0000] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2025-09-26T11:16:43+0000] [ALPM-SCRIPTLET]   -> Running build hook: [microcode]
[2025-09-26T11:16:43+0000] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2025-09-26T11:16:43+0000] [ALPM-SCRIPTLET]   -> Running build hook: [kms]
[2025-09-26T11:16:46+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'ast'
[2025-09-26T11:16:51+0000] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2025-09-26T11:16:51+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'xhci_pci_renesas'
[2025-09-26T11:16:52+0000] [ALPM-SCRIPTLET]   -> Running build hook: [keymap]
[2025-09-26T11:16:52+0000] [ALPM-SCRIPTLET]   -> Running build hook: [consolefont]
[2025-09-26T11:16:52+0000] [ALPM-SCRIPTLET] ==> WARNING: consolefont: no font found in configuration
[2025-09-26T11:16:52+0000] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'aic94xx'
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'bfa'
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qed'
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qla1280'
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qla2xxx'
[2025-09-26T11:16:53+0000] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'wd719x'
[2025-09-26T11:16:55+0000] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2025-09-26T11:16:56+0000] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2025-09-26T11:16:58+0000] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2025-09-26T11:16:59+0000] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: '/boot/initramfs-6.12-x86_64-fallback.img'
[2025-09-26T11:17:00+0000] [ALPM-SCRIPTLET]   -> Early uncompressed CPIO image generation successful
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET] ==> Initcpio image generation successful
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET] ==> Running post hooks
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET]   -> Running post hook: [sbctl]
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET] Secureboot key directory doesn't exist, not signing!
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET] ==> Post processing done
[2025-09-26T11:17:01+0000] [ALPM] running 'dbus-reload.hook'...
[2025-09-26T11:17:01+0000] [ALPM] running 'update-desktop-database.hook'...
[2025-09-26T11:17:01+0000] [ALPM] running 'zz-sbctl.hook'...
[2025-09-26T11:17:01+0000] [ALPM-SCRIPTLET] Generating EFI bundles....
[2025-09-26T11:17:01+0000] [PACMAN] Running 'pacman --noconfirm --cachedir /var/cache/pacman/pkg --config /opt/mhwd/pacman-mhwd.conf --root / -D --asexplicit nvidia-utils nvidia-settings libxnvctrl nvidia-prime lib32-nvidia-utils linux612-nvidia'
[2025-09-26T11:17:13+0000] [PAMAC] synchronizing package lists

/etc/default/grub:

GRUB_DEFAULT=saved
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Manjaro"
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""

# If you want to enable the save default function, uncomment the following
# line, and set GRUB_DEFAULT to saved.
GRUB_SAVEDEFAULT=true

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter 
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx" 
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper 
# modes only.  Entries specified as foreground/background.
GRUB_COLOR_NORMAL="light-gray/black"
GRUB_COLOR_HIGHLIGHT="green/black"

# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/usr/share/grub/background.png"
#GRUB_THEME="/path/to/gfxtheme"

# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"

/etc/default/grub-btrfs/config:

#!/usr/bin/env bash


GRUB_BTRFS_VERSION=4.12-master-2023-04-28T16:26:00+00:00

# Disable grub-btrfs.
# Default: "false"
#GRUB_BTRFS_DISABLE="true"

# Name appearing in the Grub menu.
# Default: "Use distribution information from /etc/os-release."
#GRUB_BTRFS_SUBMENUNAME="Arch Linux snapshots"

# Custom title.
# Shows/Hides "date" "snapshot" "type" "description" in the Grub menu, custom order available.
# Default: ("date" "snapshot" "type" "description")
#GRUB_BTRFS_TITLE_FORMAT=("date" "snapshot" "type" "description")

# Limit the number of snapshots populated in the GRUB menu.
# Default: "50"
#GRUB_BTRFS_LIMIT="50"

# Sort the found subvolumes by "ogeneration" or "generation" or "path" or "rootid".
# # See Sorting section to https://btrfs.wiki.kernel.org/index.php/Manpage/btrfs-subvolume#SUBCOMMAND
# "-rootid" means list snapshot by new ones first.
# Default: "-rootid"
#GRUB_BTRFS_SUBVOLUME_SORT="+ogen,-gen,path,rootid"

# Show snapshots found during run "grub-mkconfig"
# Default: "true"
#GRUB_BTRFS_SHOW_SNAPSHOTS_FOUND="false"

# Show Total of snapshots found during run "grub-mkconfig"
# Default: "true"
#GRUB_BTRFS_SHOW_TOTAL_SNAPSHOTS_FOUND="true"

# By default, "grub-btrfs" automatically detects most existing kernels.
# If you have one or more custom kernels, you can add them here.
# Default: ("")
#GRUB_BTRFS_NKERNEL=("kernel-custom" "vmlinux-custom")

# By default, "grub-btrfs" automatically detects most existing initramfs.
# If you have one or more custom initramfs, you can add them here.
# Default: ("")
#GRUB_BTRFS_NINIT=("initramfs-custom.img" "initrd-custom.img" "otherinit-custom.gz")

# By default, "grub-btrfs" automatically detects most existing microcodes.
# If you have one or more custom microcodes, you can add them here.
# Default: ("")
#GRUB_BTRFS_CUSTOM_MICROCODE=("custom-ucode.img" "custom-uc.img "custom_ucode.cpio")

# Additonal kernel command line parameters that should be passed to the kernel
# when booting a snapshot.
# For dracut based distros this could be useful to pass "rd.live.overlay.overlayfs=1"
# or "rd.live.overlay.readonly=1" to the Kernel for booting snapshots read only.
# Default: ""
#GRUB_BTRFS_SNAPSHOT_KERNEL_PARAMETERS="rd.live.overlay.overlayfs=1"

# Comma seperated mount options to be used when booting a snapshot.
# They can be defined here as well as in the "/" line inside the respective snapshots'
# "/etc/fstab" files.  Mount options found in both places are combined, and this variable
# takes priority over `fstab` entries.
# NB: Do NOT include "subvol=..." or "subvolid=..." here.
# Default: ""
#GRUB_BTRFS_ROOTFLAGS="space_cache,commit=10,norecovery"

# Ignore specific path during run "grub-mkconfig".
# Only exact paths are ignored.
# e.g : if `specific path` = @, only `@` snapshot will be ignored.
# Default: ("@")
GRUB_BTRFS_IGNORE_SPECIFIC_PATH=("@")

# Ignore prefix path during run "grub-mkconfig".
# Any path starting with the specified string will be ignored.
# e.g : if `prefix path` = @, all snapshots beginning with "@/..." will be ignored.
# Default: ("var/lib/docker" "@var/lib/docker" "@/var/lib/docker")
GRUB_BTRFS_IGNORE_PREFIX_PATH=("var/lib/docker" "@var/lib/docker" "@/var/lib/docker")

# Ignore specific type/tag of snapshot during run "grub-mkconfig".
# For snapper:
# Type = single, pre, post.
# For Timeshift:
# Tag = boot, ondemand, hourly, daily, weekly, monthly.
# Default: ("")
#GRUB_BTRFS_IGNORE_SNAPSHOT_TYPE=("")

# Ignore specific description of snapshot during run "grub-mkconfig".
# e.g: timeline
# Default: ("")
#GRUB_BTRFS_IGNORE_SNAPSHOT_DESCRIPTION=("")

# By default "grub-btrfs" automatically detects your boot partition,
# either located at the system root or on a separate partition or in a subvolume,
# Change to "true" if your boot partition isn't detected as separate.
# Default: "false"
#GRUB_BTRFS_OVERRIDE_BOOT_PARTITION_DETECTION="true"

# Location of the folder containing the "grub.cfg" file.
# Might be grub2 on some systems.
# Default: "/boot/grub"
#GRUB_BTRFS_GRUB_DIRNAME="/boot/grub2"

# Location of kernels/initramfs/microcode.
# Use by "grub-btrfs" to detect the boot partition and the location of kernels/initrafms/microcodes.
# Default: "/boot"
#GRUB_BTRFS_BOOT_DIRNAME="/boot"

# Location where grub-btrfs.cfg should be saved.
# Some distributions (like OpenSuSE) store those files at the snapshot directory
# instead of boot. Be aware that this direcory must be available for grub during
# startup of the system.
# Default: $GRUB_BTRFS_GRUB_DIRNAME
#GRUB_BTRFS_GBTRFS_DIRNAME="/boot/grub"

# Location of the directory where Grub searches for the grub-btrfs.cfg file.
# Some distributions (like OpenSuSE) store those file at the snapshot directory
# instead of boot. Be aware that this direcory must be available for grub during
# startup of the system.
# Default: "\${prefix}" # This is a grub variable that resolves to where grub is
# installed. (like /boot/grub, /boot/efi/grub)
# NOTE: If variables of grub are used here (like ${prefix}) they need to be escaped
# with `\` before the `$`
#GRUB_BTRFS_GBTRFS_SEARCH_DIRNAME="\${prefix}"


# Name/path of grub-mkconfig command, use by "grub-btrfs.service"
# Might be 'grub2-mkconfig' on some systems (Fedora ...)
# Default paths are /sbin:/bin:/usr/sbin:/usr/bin,
# if your path is missing, report it on the upstream project.
# For example, on Fedora : "/sbin/grub2-mkconfig"
# You can use only name or full path.
# Default: grub-mkconfig
#GRUB_BTRFS_MKCONFIG=/usr/bin/grub2-mkconfig

# Name of grub-script-check command, use by "grub-btrfs"
# Might be 'grub2-script-check' on some systems (Fedora ...)
# For example, on Fedora : "grub2-script-check"
# Default: grub-script-check
#GRUB_BTRFS_SCRIPT_CHECK=grub2-script-check

# Path of grub-mkconfig_lib file, use by "grub-btrfs"
# Might be '/usr/share/grub2/grub-mkconfig_lib' on some systems (Opensuse ...)
# Default: /usr/share/grub/grub-mkconfig_lib
#GRUB_BTRFS_MKCONFIG_LIB=/usr/share/grub2/grub-mkconfig_lib

# Password protection management for submenu,snapshots
# Refer to the Grub documentation https://www.gnu.org/software/grub/manual/grub/grub.html#Authentication-and-authorisation
# and this comment https://github.com/Antynea/grub-btrfs/issues/95#issuecomment-682295660
#
# Add authorized usernames separate by comma (foo,bar)
# When Grub's password protection is enabled, the superuser is authorized by default, it isn't necessary to add it
# Default: ""
#GRUB_BTRFS_PROTECTION_AUTHORIZED_USERS="foo,bar"
#
# Disable authentication support for submenu of Grub-btrfs only (--unrestricted)
# doesn't work if GRUB_BTRFS_PROTECTION_AUTHORIZED_USERS isn't empty
# Default: "false"
#GRUB_BTRFS_DISABLE_PROTECTION_SUBMENU="true"

At least the pacman.log is from the live-session and not your affected system …

Ok, this time I pulled the pacman.log from the mounted affected system:

[2025-09-26T09:00:52+0100] [PAMAC] synchronizing package lists
[2025-09-26T09:14:28+0100] [PAMAC] synchronizing package lists
[2025-09-26T09:17:34+0100] [ALPM] running '00-timeshift-autosnap.hook'...
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Using system disk as snapshot device for creating snapshots in BTRFS mode
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Mounted '/dev/nvme0n1p4' (subvolid=0) at '/run/timeshift/6912/backup'
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] btrfs: Quotas are not enabled
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Creating new backup...(BTRFS)
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Saving to device: /dev/nvme0n1p4, mounted at path: /run/timeshift/6912/backup
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Created directory: /run/timeshift/6912/backup/timeshift-btrfs/snapshots/2025-09-26_09-17-34
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Created subvolume snapshot: /run/timeshift/6912/backup/timeshift-btrfs/snapshots/2025-09-26_09-17-34/@
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Created control file: /run/timeshift/6912/backup/timeshift-btrfs/snapshots/2025-09-26_09-17-34/info.json
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] BTRFS Snapshot saved successfully (0s)
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] Tagged snapshot '2025-09-26_09-17-34': ondemand
[2025-09-26T09:17:34+0100] [ALPM-SCRIPTLET] ------------------------------------------------------------------------------
[2025-09-26T09:17:35+0100] [ALPM-SCRIPTLET] Mounted '/dev/nvme0n1p4' (subvolid=0) at '/run/timeshift/7033/backup'
[2025-09-26T09:17:35+0100] [ALPM-SCRIPTLET] btrfs: Quotas are not enabled
[2025-09-26T09:17:35+0100] [ALPM-SCRIPTLET] ------------------------------------------------------------------------------
[2025-09-26T09:17:35+0100] [ALPM-SCRIPTLET] Removing snapshot: 2025-09-18_23-00-32
[2025-09-26T09:17:35+0100] [ALPM-SCRIPTLET] Deleting subvolume: @ (Id:322)
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] Deleted subvolume: @ (Id:322)
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] 
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] Deleted directory: /run/timeshift/7033/backup/timeshift-btrfs/snapshots/2025-09-18_23-00-32
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] Deleted directory: /run/timeshift/7033/backup/timeshift-btrfs/snapshots/2025-09-18_23-00-32
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] Removed snapshot: 2025-09-18_23-00-32
[2025-09-26T09:17:52+0100] [ALPM-SCRIPTLET] ------------------------------------------------------------------------------
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Generating grub configuration file ...
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Found theme: /usr/share/grub/themes/manjaro/theme.txt
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Found linux image: /boot/vmlinuz-6.12-x86_64
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Found initrd image: /boot/intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Found initrd fallback image: /boot/initramfs-6.12-x86_64-fallback.img
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Warning: os-prober will be executed to detect other bootable partitions.
[2025-09-26T09:17:53+0100] [ALPM-SCRIPTLET] Its output will be used to detect bootable binaries on them and create new boot entries.
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found Manjaro Linux on /dev/nvme0n1p4
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Adding boot menu entry for UEFI Firmware Settings ...
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Detecting snapshots ...
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-26 09:17:34 | timeshift-btrfs/snapshots/2025-09-26_09-17-34/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-25 08:32:52 | timeshift-btrfs/snapshots/2025-09-25_08-32-52/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-24 07:59:46 | timeshift-btrfs/snapshots/2025-09-24_07-59-46/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-06-12 17:00:21 | timeshift-btrfs/snapshots/2025-06-12_17-00-21/@ | ondemand | N/A                                           |
[2025-09-26T09:17:55+0100] [ALPM-SCRIPTLET] Found 4 snapshot(s)
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] Unmount /tmp/grub-btrfs.CM39E4fNRm .. Success
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] Found memtest86+ image: /boot/memtest86+/memtest.bin
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:17:56+0100] [ALPM-SCRIPTLET] done
[2025-09-26T09:17:56+0100] [ALPM] running '60-mkinitcpio-remove.hook'...
[2025-09-26T09:17:56+0100] [ALPM] running 'firefox-pre.hook'...
[2025-09-26T09:17:56+0100] [ALPM] transaction started
[2025-09-26T09:17:56+0100] [ALPM] upgraded alsa-card-profiles (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:17:56+0100] [ALPM] upgraded amd-ucode (20250808-2 -> 20250917-1)
[2025-09-26T09:17:57+0100] [ALPM] upgraded linux-api-headers (6.16-1 -> 6.16-2)
[2025-09-26T09:17:57+0100] [ALPM] upgraded freetype2 (2.13.3-3 -> 2.14.1-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded pcre2 (10.45-1 -> 10.46-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded libffi (3.5.1-1 -> 3.5.2-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded sqlite (3.50.4-1 -> 3.50.4-2)
[2025-09-26T09:17:58+0100] [ALPM] upgraded harfbuzz (11.4.4-1 -> 11.5.0-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded expat (2.7.1-1 -> 2.7.2-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded openssl (3.5.2-1 -> 3.5.3-1)
[2025-09-26T09:17:58+0100] [ALPM] upgraded libtirpc (1.3.6-2 -> 1.3.7-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded systemd-libs (257.8-4 -> 257.9-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libp11-kit (0.25.5-1 -> 0.25.7-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libcups (2:2.4.12-2 -> 2:2.4.14-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libjpeg-turbo (3.1.1-1 -> 3.1.2-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libnghttp2 (1.66.0-1 -> 1.67.1-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded p11-kit (0.25.5-1 -> 0.25.7-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded ca-certificates-mozilla (3.115.1-1 -> 3.116-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded curl (8.15.0-1 -> 8.16.0-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libproxy (0.5.10-1 -> 0.5.11-1)
[2025-09-26T09:17:59+0100] [ALPM] upgraded libxml2 (2.14.5-1 -> 2.14.6-1)
[2025-09-26T09:18:01+0100] [ALPM] upgraded nvidia-utils (575.64.05-1 -> 580.82.09-1)
[2025-09-26T09:18:01+0100] [ALPM-SCRIPTLET] xorg configuration symlink valid...
[2025-09-26T09:18:01+0100] [ALPM] upgraded mesa (1:25.2.1-4 -> 1:25.2.3-2)
[2025-09-26T09:18:01+0100] [ALPM] upgraded xcb-util-cursor (0.1.5-1 -> 0.1.6-1)
[2025-09-26T09:18:01+0100] [ALPM] upgraded qt6-translations (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded qt6-base (6.9.1-5 -> 6.9.2-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded libxfixes (6.0.1-2 -> 6.0.2-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded sdl3 (3.2.20-1 -> 3.2.22-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded antimicrox (3.5.1-1 -> 3.5.1-2)
[2025-09-26T09:18:02+0100] [ALPM] upgraded aom (3.12.1-1 -> 3.13.1-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded apparmor (4.1.1-3 -> 4.1.2-1)
[2025-09-26T09:18:02+0100] [ALPM] installed libfyaml (0.9-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded pango (1:1.56.4-1 -> 1:1.56.4-2)
[2025-09-26T09:18:02+0100] [ALPM] upgraded libwebp (1.6.0-1 -> 1.6.0-2)
[2025-09-26T09:18:02+0100] [ALPM] upgraded libtiff (4.7.0-1 -> 4.7.1-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded librsvg (2:2.61.0-1 -> 2:2.61.1-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded libxmlb (0.3.23-1 -> 0.3.24-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded appstream (1.0.6-1 -> 1.1.0-1)
[2025-09-26T09:18:02+0100] [ALPM] upgraded appstream-qt (1.0.6-1 -> 1.1.0-1)
[2025-09-26T09:18:08+0100] [ALPM] upgraded breeze-icons (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded qt6-declarative (6.9.1-3 -> 6.9.2-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kconfig (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded qt6-svg (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded qt6-wayland (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kguiaddons (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded ki18n (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kcolorscheme (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kcodecs (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kwidgetsaddons (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kcompletion (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kcoreaddons (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kconfigwidgets (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kcrash (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded kdbusaddons (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded exiv2 (0.28.5-1 -> 0.28.7-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded karchive (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded nss (3.115.1-1 -> 3.116-1)
[2025-09-26T09:18:09+0100] [ALPM] upgraded pinentry (1.3.2-1 -> 1.3.2-2)
[2025-09-26T09:18:10+0100] [ALPM] upgraded poppler (25.08.0-1 -> 25.09.1-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded poppler-qt6 (25.08.0-1 -> 25.09.1-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded convertlit (1.8-12 -> 1.8-13)
[2025-09-26T09:18:10+0100] [ALPM] upgraded libssh (0.11.2-1 -> 0.11.3-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded mpg123 (1.33.1-1 -> 1.33.2-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded libopenmpt (0.8.2-1 -> 0.8.3-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded svt-av1 (3.1.0-1 -> 3.1.2-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded libiec61883 (1.2.0-8 -> 1.2.0-9)
[2025-09-26T09:18:10+0100] [ALPM] upgraded gperftools (2.17-1 -> 2.17.2-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kfilemetadata (6.17.0-2 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kwindowsystem (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kauth (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kbookmarks (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kiconthemes (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kitemviews (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded knotifications (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kjobwidgets (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kservice (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded qt6-shadertools (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded qt6-5compat (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded kwallet (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded device-mapper (2.03.34-1 -> 2.03.35-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded hwdata (0.398-1 -> 0.399-1)
[2025-09-26T09:18:10+0100] [ALPM] upgraded systemd (257.8-4 -> 257.9-1)
[2025-09-26T09:18:12+0100] [ALPM] upgraded udisks2 (2.10.1-6 -> 2.10.2-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded solid (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded kio (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded kglobalaccel (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded kxmlgui (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded kparts (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded kpty (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded ark (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded dotnet-host (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded dotnet-runtime (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:13+0100] [ALPM] upgraded aspnet-runtime (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded dotnet-runtime-8.0 (8.0.19.sdk119-1 -> 8.0.20.sdk120-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded aspnet-runtime-8.0 (8.0.19.sdk119-1 -> 8.0.20.sdk120-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded attica (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded kirigami (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded kcmutils (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded libkcddb (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded libkcompactdisc (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:14+0100] [ALPM] upgraded audiocd-kio (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:15+0100] [ALPM] upgraded python-botocore (1.40.16-1 -> 1.40.30-1)
[2025-09-26T09:18:15+0100] [ALPM] upgraded python-s3transfer (0.13.1-1 -> 0.14.0-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded aws-cli (1.42.16-1 -> 1.42.30-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded kidletime (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded baloo (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded baloo-widgets (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded bluez-qt (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded bolt (0.9.9-1 -> 0.9.10-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded btrfs-progs (6.16-1 -> 6.16.1-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded chromaprint (1.5.1-10 -> 1.6.0-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded cups (2:2.4.12-2 -> 2:2.4.14-1)
[2025-09-26T09:18:16+0100] [ALPM] upgraded runc (1.3.0-1 -> 1.3.1-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded docker (1:28.3.3-1 -> 1:28.4.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded docker-buildx (0.27.0-1 -> 0.28.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded docker-compose (2.39.2-1 -> 2.39.4-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded kdnssd (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded libkexiv2 (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded ldb (2:4.22.4-1 -> 2:4.23.0-2)
[2025-09-26T09:18:17+0100] [ALPM] upgraded libwbclient (2:4.22.4-1 -> 2:4.23.0-2)
[2025-09-26T09:18:17+0100] [ALPM] upgraded smbclient (2:4.22.4-1 -> 2:4.23.0-2)
[2025-09-26T09:18:17+0100] [ALPM] upgraded syntax-highlighting (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded kio-extras (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded kpackage (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded syndication (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded knewstuff (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:17+0100] [ALPM] upgraded qt6-multimedia-ffmpeg (6.9.1-1 -> 6.9.2-3)
[2025-09-26T09:18:18+0100] [ALPM] upgraded qt6-multimedia (6.9.1-1 -> 6.9.2-3)
[2025-09-26T09:18:18+0100] [ALPM] upgraded qt6-speech (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded sonnet (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded ktextwidgets (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded kuserfeedback (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded dolphin (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded ktexteditor (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded dolphin-plugins (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded netstandard-targeting-pack (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:18+0100] [ALPM] upgraded dotnet-targeting-pack (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:20+0100] [ALPM] upgraded dotnet-sdk (9.0.8.sdk109-1 -> 9.0.9.sdk110-1)
[2025-09-26T09:18:20+0100] [ALPM] upgraded dotnet-targeting-pack-8.0 (8.0.19.sdk119-1 -> 8.0.20.sdk120-1)
[2025-09-26T09:18:22+0100] [ALPM] upgraded dotnet-sdk-8.0 (8.0.19.sdk119-1 -> 8.0.20.sdk120-1)
[2025-09-26T09:18:22+0100] [ALPM] upgraded json-glib (1.10.6-1 -> 1.10.8-1)
[2025-09-26T09:18:22+0100] [ALPM] upgraded electron37 (37.2.6-2 -> 37.5.1-1)
[2025-09-26T09:18:22+0100] [ALPM] upgraded drawio-desktop (28.0.6-1 -> 28.1.2-1)
[2025-09-26T09:18:23+0100] [ALPM] installed electron38 (38.1.2-1)
[2025-09-26T09:18:23+0100] [ALPM] upgraded electron (1:37-1 -> 1:38-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded electron36 (36.8.1-1 -> 36.9.1-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded qqc2-desktop-style (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded kitemmodels (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded ksvg (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded libmfx (23.2.2-4 -> 23.2.2-5)
[2025-09-26T09:18:24+0100] [ALPM] upgraded elisa (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded ffmpegthumbs (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded filelight (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:24+0100] [ALPM] upgraded libxss (1.2.4-2 -> 1.2.5-1)
[2025-09-26T09:18:25+0100] [ALPM] upgraded noto-fonts (1:2025.08.01-1 -> 1:2025.09.01-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded firefox (143.0-1 -> 143.0.1-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded libpipewire (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:26+0100] [ALPM] upgraded fluidsynth (2.4.7-1 -> 2.4.8-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded frameworkintegration (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded sdl2_ttf (2.24.0-1 -> 2.24.0-2)
[2025-09-26T09:18:26+0100] [ALPM] upgraded freerdp (2:3.17.0-1 -> 2:3.17.1-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded fwupd (2.0.13-1 -> 2.0.16-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded ghostscript (10.05.1-3 -> 10.06.0-1)
[2025-09-26T09:18:26+0100] [ALPM] upgraded grub (2:2.12.r350.g0e367796-1 -> 2:2.12.r359.g19c698d1-3)
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET] :: To use the new features provided in this GRUB update, it is recommended
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET]    to install it to the MBR or UEFI. Due to potential configuration
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET]    incompatibilities, it is advised to run both, installation and generation
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET]    of configuration:
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET]      # install-grub
[2025-09-26T09:18:26+0100] [ALPM-SCRIPTLET]      # update-grub
[2025-09-26T09:18:27+0100] [ALPM] upgraded gstreamer (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:27+0100] [ALPM] upgraded gst-plugins-base-libs (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:27+0100] [ALPM] upgraded gst-libav (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:27+0100] [ALPM] upgraded pipewire (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:27+0100] [ALPM] upgraded pipewire-audio (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:27+0100] [ALPM] upgraded libwireplumber (0.5.10-1 -> 0.5.11-1)
[2025-09-26T09:18:27+0100] [ALPM] upgraded wireplumber (0.5.10-1 -> 0.5.11-1)
[2025-09-26T09:18:27+0100] [ALPM] upgraded pipewire-session-manager (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:27+0100] [ALPM] upgraded gst-plugin-pipewire (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:28+0100] [ALPM] upgraded gst-plugins-bad-libs (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded imagemagick (7.1.2.2-1 -> 7.1.2.3-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded gst-plugins-bad (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded gst-plugins-base (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded gst-plugins-good (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded gst-plugins-ugly (1.26.5-2 -> 1.26.6-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded jasper (4.2.5-1 -> 4.2.8-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded libkdcraw (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded signon-kwallet-extension (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded qt6-positioning (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:28+0100] [ALPM] upgraded qt6-webchannel (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded qt6-webengine (6.9.1-3 -> 6.9.2-2)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kaccounts-integration (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded purpose (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded gwenview (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded harfbuzz-icu (11.4.4-1 -> 11.5.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded hwloc (2.12.1-1 -> 2.12.2-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded install-grub (2:2.12.r350.g0e367796-5 -> 2:2.12.r359.g19c698d1-3)
[2025-09-26T09:18:29+0100] [ALPM] upgraded iw (6.9-1 -> 6.17-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kaccounts-providers (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kamera (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kate (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kcalc (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kcontacts (1:6.17.0-1 -> 1:6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kdeclarative (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kpeople (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded kstatusnotifieritem (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded modemmanager-qt (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:29+0100] [ALPM] upgraded qt6-connectivity (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:30+0100] [ALPM] upgraded kdeconnect (25.08.0-2 -> 25.08.1-1)
[2025-09-26T09:18:30+0100] [ALPM] upgraded kded (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:30+0100] [ALPM] upgraded kdegraphics-mobipocket (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:30+0100] [ALPM] upgraded kdegraphics-thumbnailers (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:31+0100] [ALPM] upgraded samba (2:4.22.4-1 -> 2:4.23.0-2)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kdenetwork-filesharing (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kdesu (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kdoctools (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded keditbookmarks (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kfind (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded ktexttemplate (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded khelpcenter (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kholidays (1:6.17.0-1 -> 1:6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kimageformats (6.17.0-2 -> 6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded knotifyconfig (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded konsole (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:32+0100] [ALPM] upgraded kquickcharts (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded krecorder (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded krunner (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded poppler-glib (25.08.0-1 -> 25.09.1-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded ksanecore (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded ksystemlog (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded kunitconversion (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded kwalletmanager (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded qt6-sensors (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded qt6-tools (6.9.1-2 -> 6.9.2-1)
[2025-09-26T09:18:33+0100] [ALPM] upgraded kwin (6.3.6-3 -> 6.3.6-4)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libnghttp2 (1.66.0-1 -> 1.67.1-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-openssl (1:3.5.2-1 -> 1:3.5.3-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-curl (8.15.0-1 -> 8.16.0-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-expat (2.7.1-1 -> 2.7.2-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-freetype2 (2.13.3-3 -> 2.14.1-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libffi (3.5.1-1 -> 3.5.2-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-pcre2 (10.45-1 -> 10.46-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-harfbuzz (11.4.4-1 -> 11.5.0-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libltdl (2.5.4+r62+g6389dce8-1 -> 2.6.0-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-p11-kit (0.25.5-1 -> 0.25.7-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-nss (3.115.1-1 -> 3.116-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libtirpc (1.3.6-2 -> 1.3.7-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-systemd (257.8-1 -> 257.9-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded libnm (1.54.0-1 -> 1.54.1-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libnm (1.54.0-1 -> 1.54.1-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libpipewire (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-libxml2 (2.14.5-1 -> 2.14.6-1)
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-nvidia-utils (575.64.05-1 -> 580.82.09-1)
[2025-09-26T09:18:34+0100] [ALPM-SCRIPTLET] xorg configuration symlink valid...
[2025-09-26T09:18:34+0100] [ALPM] upgraded lib32-mesa (1:25.2.1-1 -> 1:25.2.3-2)
[2025-09-26T09:18:35+0100] [ALPM] upgraded lib32-pipewire (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libadwaita (1:1.7.6-1 -> 1:1.7.7-1)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libcurl-gnutls (8.15.0-1 -> 8.16.0-1)
[2025-09-26T09:18:35+0100] [ALPM] upgraded qt5-base (5.15.17+kde+r123-1 -> 5.15.17+kde+r123-2)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libkdcraw5 (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libksane (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libmalcontent (0.13.0-1 -> 0.13.1-1)
[2025-09-26T09:18:35+0100] [ALPM] upgraded libzmf (0.0.2-17 -> 0.0.2-18)
[2025-09-26T09:18:38+0100] [ALPM] upgraded libreoffice-still (25.2.5-1 -> 25.2.6-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded libxnvctrl (575.64.05-1 -> 580.82.09-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded libxpresent (1.0.1-2 -> 1.0.2-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-whence (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-amdgpu (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-atheros (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-broadcom (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-cirrus (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-intel (20250808-2 -> 20250917-1)
[2025-09-26T09:18:38+0100] [ALPM] upgraded linux-firmware-mediatek (20250808-2 -> 20250917-2)
[2025-09-26T09:18:39+0100] [ALPM] upgraded linux-firmware-nvidia (20250808-2 -> 20250917-1)
[2025-09-26T09:18:39+0100] [ALPM] upgraded linux-firmware-other (20250808-2 -> 20250917-1)
[2025-09-26T09:18:39+0100] [ALPM] upgraded linux-firmware-radeon (20250808-2 -> 20250917-1)
[2025-09-26T09:18:39+0100] [ALPM] upgraded linux-firmware-realtek (20250808-2 -> 20250917-1)
[2025-09-26T09:18:39+0100] [ALPM] upgraded linux-firmware-meta (20250808-2 -> 20250917-1)
[2025-09-26T09:18:40+0100] [ALPM] upgraded linux612 (6.12.44-3 -> 6.12.48-1)
[2025-09-26T09:18:40+0100] [ALPM] upgraded linux612-nvidia (575.64.05-8 -> 580.82.09-3)
[2025-09-26T09:18:41+0100] [ALPM] upgraded lvm2 (2.03.34-1 -> 2.03.35-1)
[2025-09-26T09:18:41+0100] [ALPM] upgraded manjaro-release (25.0.8-1 -> 25.0.9-1)
[2025-09-26T09:18:41+0100] [ALPM] upgraded perl-libwww (6.79-2 -> 6.80-1)
[2025-09-26T09:18:41+0100] [ALPM] installed python-pytz (2025.2-1)
[2025-09-26T09:18:41+0100] [ALPM] upgraded pacman-mirrors (5.0-1 -> 5.1-1)
[2025-09-26T09:18:41+0100] [ALPM] upgraded mhwd-nvidia (575.64.05-1 -> 580.82.09-1)
[2025-09-26T09:18:41+0100] [ALPM] installed mhwd-nvidia-570xx (570.190-3)
[2025-09-26T09:18:41+0100] [ALPM] installed mhwd-nvidia-575xx (575.64.05-2)
[2025-09-26T09:18:41+0100] [ALPM] upgraded nvidia-driver-assistant (0.22.65.06-1 -> 0.22.82.07-1)
[2025-09-26T09:18:41+0100] [ALPM] upgraded mhwd-db (20250729-1 -> 20250918-1)
[2025-09-26T09:18:42+0100] [ALPM-SCRIPTLET] e[1;1me[1;32m==>e[1;0me[1;1m Updating Config: '/var/lib/mhwd/local/pci/video-hybrid-intel-nvidia-prime'e[1;0m
[2025-09-26T09:18:42+0100] [ALPM] upgraded mlt (7.32.0-2 -> 7.32.0-3)
[2025-09-26T09:18:42+0100] [ALPM] upgraded nano-syntax-highlighting (2022.11.02.r102.gbb94603-1 -> 2025.07.01.r0.g256995b-2)
[2025-09-26T09:18:42+0100] [ALPM] upgraded networkmanager (1.54.0-1 -> 1.54.1-1)
[2025-09-26T09:18:42+0100] [ALPM] upgraded networkmanager-qt (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:42+0100] [ALPM] upgraded nfsidmap (2.8.3-3 -> 2.8.4-1)
[2025-09-26T09:18:42+0100] [ALPM] upgraded nfs-utils (2.8.3-3 -> 2.8.4-1)
[2025-09-26T09:18:42+0100] [ALPM] upgraded noto-fonts-emoji (1:2.048-1 -> 1:2.051-1)
[2025-09-26T09:18:42+0100] [ALPM] upgraded ntp (4.2.8.p18-3 -> 4.2.8.p18-4)
[2025-09-26T09:18:43+0100] [ALPM] upgraded nvidia-settings (575.64.05-1 -> 580.82.09-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded threadweaver (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded okular (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded openssh (10.0p1-4 -> 10.0p1-5)
[2025-09-26T09:18:43+0100] [ALPM] upgraded ostree (2025.5-1 -> 2025.6-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded pipewire-alsa (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:43+0100] [ALPM] upgraded pipewire-pulse (1:1.4.7-1 -> 1:1.4.8-2)
[2025-09-26T09:18:43+0100] [ALPM] upgraded plymouth (24.004.60-13 -> 24.004.60-14)
[2025-09-26T09:18:43+0100] [ALPM] upgraded prison (6.17.0-1 -> 6.18.0-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded python-cryptography (45.0.6-1 -> 45.0.7-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded python-pillow (11.3.0-1 -> 11.3.0-3)
[2025-09-26T09:18:43+0100] [ALPM] upgraded qt6-imageformats (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:43+0100] [ALPM] upgraded qt6-quicktimeline (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded qt6-quick3d (6.9.1-2 -> 6.9.2-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded qt6-virtualkeyboard (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded qt6-websockets (6.9.1-1 -> 6.9.2-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded skanlite (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded sqlitebrowser (3.13.1-1 -> 3.13.1-2)
[2025-09-26T09:18:44+0100] [ALPM] upgraded systemd-sysvcompat (257.8-4 -> 257.9-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded xapp (2.8.12-1 -> 2.8.13-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded timeshift (25.07.5-1 -> 25.07.7-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded udiskie (2.5.7-1 -> 2.5.8-1)
[2025-09-26T09:18:44+0100] [ALPM] upgraded update-grub (2:2.12.r350.g0e367796-1 -> 2:2.12.r359.g19c698d1-3)
[2025-09-26T09:18:45+0100] [ALPM] upgraded vim-runtime (9.1.1623-1 -> 9.1.1734-1)
[2025-09-26T09:18:45+0100] [ALPM] upgraded vim (9.1.1623-1 -> 9.1.1734-1)
[2025-09-26T09:18:45+0100] [ALPM] upgraded webkit2gtk-4.1 (2.48.5-1 -> 2.48.6-1)
[2025-09-26T09:18:45+0100] [ALPM] upgraded xfsprogs (6.15.0-1 -> 6.16.0-2)
[2025-09-26T09:18:45+0100] [ALPM] upgraded yakuake (25.08.0-1 -> 25.08.1-1)
[2025-09-26T09:18:45+0100] [ALPM] transaction completed
[2025-09-26T09:18:50+0100] [ALPM] running '20-systemd-sysusers.hook'...
[2025-09-26T09:18:50+0100] [ALPM] running '30-systemd-catalog.hook'...
[2025-09-26T09:18:51+0100] [ALPM] running '30-systemd-daemon-reload-system.hook'...
[2025-09-26T09:18:51+0100] [ALPM] running '30-systemd-daemon-reload-user.hook'...
[2025-09-26T09:18:52+0100] [ALPM] running '30-systemd-hwdb.hook'...
[2025-09-26T09:18:52+0100] [ALPM] running '30-systemd-restart-marked.hook'...
[2025-09-26T09:18:53+0100] [ALPM] running '30-systemd-sysctl.hook'...
[2025-09-26T09:18:53+0100] [ALPM] running '30-systemd-tmpfiles.hook'...
[2025-09-26T09:18:53+0100] [ALPM] running '30-systemd-udev-reload.hook'...
[2025-09-26T09:18:54+0100] [ALPM] running '30-systemd-update.hook'...
[2025-09-26T09:18:54+0100] [ALPM] running '30-update-mime-database.hook'...
[2025-09-26T09:18:54+0100] [ALPM] running '40-update-ca-trust.hook'...
[2025-09-26T09:18:56+0100] [ALPM] running '60-depmod.hook'...
[2025-09-26T09:18:57+0100] [ALPM] running '70-openssh-restart-sshd.hook'...
[2025-09-26T09:18:58+0100] [ALPM] running '90-mkinitcpio-install.hook'...
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux612.preset: 'default'
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET] ==> Using default configuration file: '/etc/mkinitcpio.conf'
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-6.12-x86_64 -g /boot/initramfs-6.12-x86_64.img
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET] ==> Starting build: '6.12.48-1-MANJARO'
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> Running build hook: [microcode]
[2025-09-26T09:18:59+0100] [ALPM-SCRIPTLET]   -> Running build hook: [kms]
[2025-09-26T09:19:03+0100] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2025-09-26T09:19:03+0100] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2025-09-26T09:19:03+0100] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2025-09-26T09:19:04+0100] [ALPM-SCRIPTLET]   -> Running build hook: [keymap]
[2025-09-26T09:19:04+0100] [ALPM-SCRIPTLET]   -> Running build hook: [consolefont]
[2025-09-26T09:19:04+0100] [ALPM-SCRIPTLET] ==> WARNING: consolefont: no font found in configuration
[2025-09-26T09:19:04+0100] [ALPM-SCRIPTLET]   -> Running build hook: [plymouth]
[2025-09-26T09:19:05+0100] [ALPM-SCRIPTLET]   -> Running build hook: [resume]
[2025-09-26T09:19:05+0100] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2025-09-26T09:19:06+0100] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2025-09-26T09:19:06+0100] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: '/boot/initramfs-6.12-x86_64.img'
[2025-09-26T09:19:06+0100] [ALPM-SCRIPTLET]   -> Early uncompressed CPIO image generation successful
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Initcpio image generation successful
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Running post hooks
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET]   -> Running post hook: [sbctl]
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] Secureboot key directory doesn't exist, not signing!
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Post processing done
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux612.preset: 'fallback'
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Using default configuration file: '/etc/mkinitcpio.conf'
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-6.12-x86_64 -g /boot/initramfs-6.12-x86_64-fallback.img -S autodetect
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET] ==> Starting build: '6.12.48-1-MANJARO'
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2025-09-26T09:19:07+0100] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2025-09-26T09:19:08+0100] [ALPM-SCRIPTLET]   -> Running build hook: [microcode]
[2025-09-26T09:19:08+0100] [ALPM-SCRIPTLET]   -> Running build hook: [kms]
[2025-09-26T09:19:10+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'ast'
[2025-09-26T09:19:16+0100] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2025-09-26T09:19:16+0100] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'aic94xx'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'bfa'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qed'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qla1280'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'qla2xxx'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'wd719x'
[2025-09-26T09:19:17+0100] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: 'xhci_pci_renesas'
[2025-09-26T09:19:19+0100] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2025-09-26T09:19:20+0100] [ALPM-SCRIPTLET]   -> Running build hook: [keymap]
[2025-09-26T09:19:20+0100] [ALPM-SCRIPTLET]   -> Running build hook: [consolefont]
[2025-09-26T09:19:20+0100] [ALPM-SCRIPTLET] ==> WARNING: consolefont: no font found in configuration
[2025-09-26T09:19:20+0100] [ALPM-SCRIPTLET]   -> Running build hook: [plymouth]
[2025-09-26T09:19:22+0100] [ALPM-SCRIPTLET]   -> Running build hook: [resume]
[2025-09-26T09:19:22+0100] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2025-09-26T09:19:26+0100] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2025-09-26T09:19:26+0100] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: '/boot/initramfs-6.12-x86_64-fallback.img'
[2025-09-26T09:19:27+0100] [ALPM-SCRIPTLET]   -> Early uncompressed CPIO image generation successful
[2025-09-26T09:19:28+0100] [ALPM-SCRIPTLET] ==> Initcpio image generation successful
[2025-09-26T09:19:28+0100] [ALPM-SCRIPTLET] ==> Running post hooks
[2025-09-26T09:19:28+0100] [ALPM-SCRIPTLET]   -> Running post hook: [sbctl]
[2025-09-26T09:19:28+0100] [ALPM-SCRIPTLET] Secureboot key directory doesn't exist, not signing!
[2025-09-26T09:19:28+0100] [ALPM-SCRIPTLET] ==> Post processing done
[2025-09-26T09:19:28+0100] [ALPM] running '90-update-appstream-cache.hook'...
[2025-09-26T09:19:32+0100] [ALPM-SCRIPTLET] ✔ Metadata cache was updated successfully.
[2025-09-26T09:19:32+0100] [ALPM] running '98-install-grub.hook'...
[2025-09-26T09:19:33+0100] [ALPM-SCRIPTLET] Grub will be installed on: EFI
[2025-09-26T09:19:33+0100] [ALPM-SCRIPTLET] Installing for x86_64-efi platform.
[2025-09-26T09:19:33+0100] [ALPM-SCRIPTLET] Installation finished. No error reported.
[2025-09-26T09:19:33+0100] [ALPM-SCRIPTLET] Generating grub configuration file ...
[2025-09-26T09:19:33+0100] [ALPM-SCRIPTLET] Found theme: /usr/share/grub/themes/manjaro/theme.txt
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Found linux image: /boot/vmlinuz-6.12-x86_64
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Found initrd image: /boot/intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Found initrd fallback image: /boot/initramfs-6.12-x86_64-fallback.img
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Warning: os-prober will be executed to detect other bootable partitions.
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Its output will be used to detect bootable binaries on them and create new boot entries.
[2025-09-26T09:19:34+0100] [ALPM-SCRIPTLET] Found Manjaro Linux on /dev/nvme0n1p4
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Adding boot menu entry for UEFI Firmware Settings ...
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Detecting snapshots ...
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-26 09:17:34 | timeshift-btrfs/snapshots/2025-09-26_09-17-34/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-25 08:32:52 | timeshift-btrfs/snapshots/2025-09-25_08-32-52/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-24 07:59:46 | timeshift-btrfs/snapshots/2025-09-24_07-59-46/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-06-12 17:00:21 | timeshift-btrfs/snapshots/2025-06-12_17-00-21/@ | ondemand | N/A                                           |
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found 4 snapshot(s)
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Unmount /tmp/grub-btrfs.53KAxoToSr .. Success
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found memtest86+ image: /boot/memtest86+/memtest.bin
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:19:35+0100] [ALPM-SCRIPTLET] done
[2025-09-26T09:19:35+0100] [ALPM] running '99-update-grub.hook'...
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Generating grub configuration file ...
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Found theme: /usr/share/grub/themes/manjaro/theme.txt
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Found linux image: /boot/vmlinuz-6.12-x86_64
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Found initrd image: /boot/intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Found initrd fallback image: /boot/initramfs-6.12-x86_64-fallback.img
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Warning: os-prober will be executed to detect other bootable partitions.
[2025-09-26T09:19:36+0100] [ALPM-SCRIPTLET] Its output will be used to detect bootable binaries on them and create new boot entries.
[2025-09-26T09:19:37+0100] [ALPM-SCRIPTLET] Found Manjaro Linux on /dev/nvme0n1p4
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Adding boot menu entry for UEFI Firmware Settings ...
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Detecting snapshots ...
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-26 09:17:34 | timeshift-btrfs/snapshots/2025-09-26_09-17-34/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-25 08:32:52 | timeshift-btrfs/snapshots/2025-09-25_08-32-52/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-09-24 07:59:46 | timeshift-btrfs/snapshots/2025-09-24_07-59-46/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found snapshot: 2025-06-12 17:00:21 | timeshift-btrfs/snapshots/2025-06-12_17-00-21/@ | ondemand | N/A                                           |
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found 4 snapshot(s)
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Unmount /tmp/grub-btrfs.5qL9pMLYdh .. Success
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found memtest86+ image: /boot/memtest86+/memtest.bin
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] /usr/bin/grub-probe: warning: unknown device type nvme0n1.
[2025-09-26T09:19:38+0100] [ALPM-SCRIPTLET] done
[2025-09-26T09:19:38+0100] [ALPM] running 'dbus-reload.hook'...
[2025-09-26T09:19:39+0100] [ALPM] running 'detect-old-perl-modules.hook'...
[2025-09-26T09:19:39+0100] [ALPM] running 'firefox-post.hook'...
[2025-09-26T09:19:39+0100] [ALPM] running 'fontconfig.hook'...
[2025-09-26T09:19:39+0100] [ALPM] running 'fontconfig-32.hook'...
[2025-09-26T09:19:39+0100] [ALPM] running 'gdk-pixbuf-query-loaders.hook'...
[2025-09-26T09:19:40+0100] [ALPM] running 'glib-compile-schemas.hook'...
[2025-09-26T09:19:40+0100] [ALPM] running 'gtk-update-icon-cache.hook'...
[2025-09-26T09:19:41+0100] [ALPM] running 'networkmanager-connectivity.hook'...
[2025-09-26T09:19:41+0100] [ALPM] running 'pacman-mirrors-upgrade.hook'...
[2025-09-26T09:19:42+0100] [ALPM-SCRIPTLET] ::e[1;37mINFOe[1;m Downloading mirrors from Manjaro
[2025-09-26T09:19:42+0100] [ALPM-SCRIPTLET] ::e[1;37mINFOe[1;m => Mirror pool: https://repo.manjaro.org/mirrors.json
[2025-09-26T09:19:42+0100] [ALPM-SCRIPTLET] ::e[1;37mINFOe[1;m => Mirror status: https://repo.manjaro.org/status.json
[2025-09-26T09:19:42+0100] [ALPM-SCRIPTLET] hint: use `pacman-mirrors` to generate and update your pacman mirrorlist.
[2025-09-26T09:19:42+0100] [ALPM] running 'texinfo-install.hook'...
[2025-09-26T09:19:43+0100] [ALPM] running 'update-desktop-database.hook'...
[2025-09-26T09:19:43+0100] [ALPM] running 'xorg-mkfontscale.hook'...
[2025-09-26T09:19:44+0100] [ALPM] running 'zz-sbctl.hook'...
[2025-09-26T09:19:44+0100] [ALPM-SCRIPTLET] Generating EFI bundles....

add GRUB_TIMEOUT_STYLE=menu to your /etc/default/grub file on the affected system and regenerate the menu with update-grub or edit the /boot/grub/grub.cfg file directly to remove any low timeouts or hidden menus. Then try to reboot into one of the working BTRFS snapshots. Based on the log file it looks like a normal update. Your hardware might have issues with the newer Nvidia drivers.

  • Backed up the whole /boot partition.
  • Modified the /etc/default/grub as mentioned, and ran the update-grub:
[manjaro /]# update-grub
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
Found linux image: /boot/vmlinuz-6.12-x86_64
Found initrd image: /boot/intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
Found initrd fallback image: /boot/initramfs-6.12-x86_64-fallback.img
Warning: os-prober will be executed to detect other bootable partitions.
Its output will be used to detect bootable binaries on them and create new boot entries.
ERROR: mkdir /var/lock/dmraid
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
Found Manjaro Linux on /dev/nvme0n1p4
Adding boot menu entry for UEFI Firmware Settings ...
Detecting snapshots ...
Found snapshot: 2025-09-26 09:17:34 | timeshift-btrfs/snapshots/2025-09-26_09-17-34/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found snapshot: 2025-09-25 08:32:52 | timeshift-btrfs/snapshots/2025-09-25_08-32-52/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found snapshot: 2025-09-24 07:59:46 | timeshift-btrfs/snapshots/2025-09-24_07-59-46/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found snapshot: 2025-06-12 17:00:21 | timeshift-btrfs/snapshots/2025-06-12_17-00-21/@ | ondemand | N/A                                           |
Found 4 snapshot(s)
Unmount /tmp/grub-btrfs.h5DpuH3qTU .. Success
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
done
  • After that comm -3 the backed up /boot/grub/grub.cfg vs updated one in mounted affected system partition - a diff appeared.
sudo comm -3 /mnt/boot/grub/grub.cfg /run/media/manjaro/usb\ drive/system_files/backup/boot/grub/grub.cfg                                                                                        1 ✘
          set lang=en_GB
comm: file 2 is not in sorted order
          insmod gettext
        fi
  set lang=en_US
comm: file 1 is not in sorted order
  insmod gettext
fi
          set timeout_style=hidden
          set timeout=0.0
        # Fallback hidden-timeout code in case the timeout_style feature is
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
        elif sleep --interruptible 0.0 ; then
else
          set timeout=0
        fi
        ### END /etc/grub.d/00_header ###

        ### BEGIN /etc/grub.d/10_linux ###
        menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
                load_video
                set gfxpayload=keep
                insmod gzio
                insmod part_gpt
                insmod ext2
                search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
                linux   /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
                initrd  /intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
        }
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod ext2
        search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
        linux   /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
        initrd  /intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
}
comm: input is not in sorted order

However, on reboot’ing the same issue persists.
After the laptop maker logo, once the startup interrupt text is gone, I start mashing Esc, but the next screen is an unresponsive “_”.

I have to wait for the tooltip to be gone as Esc trigger some sort of firmware info screen. Perhaps, there’s another key apart Esc that Manjaro uses for grub menu?

Your hardware might have issues with the newer Nvidia drivers.

That might be testable.
Is there a way to make the boot not load anything Nvidia related?

If I were to disable the Nvidia stuff, and the system would start booting,
then we’d know for sure + I’d be able to maybe bypass the issue & restore the snapshot.

Please post the full grub.cfg of the affected system.

/boot/grub/grub.cfg before update-grub:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

set menu_color_normal=light-gray/black
set menu_color_highlight=green/black

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root 5be28fc1-be69-47de-b656-d5a869416fd4
    font="/@/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_GB
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root 5be28fc1-be69-47de-b656-d5a869416fd4
insmod gfxmenu
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_24.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_48.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_bold_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_mono_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-18.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b18.pf2
insmod png
set theme=($root)/@/usr/share/grub/themes/manjaro/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=hidden
  set timeout=0.0
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 0.0 ; then
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod ext2
	search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
	linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
	initrd	/intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
}
submenu 'Advanced options for Manjaro Linux' $menuentry_id_option 'gnulinux-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
	menuentry 'Manjaro Linux (Kernel: 6.12.48-1-MANJARO x64)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.48-1-MANJARO x64-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd	/intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel: 6.12.48-1-MANJARO x64 - fallback initramfs)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.48-1-MANJARO x64-fallback-5be28fc1-be69-47de-b656-d5a869416fd4' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd	/initramfs-6.12-x86_64-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/15_ostree ###
### END /etc/grub.d/15_ostree ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/25_bli ###
if [ "$grub_platform" = "efi" ]; then
  insmod bli
fi
### END /etc/grub.d/25_bli ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Manjaro Linux (on /dev/nvme0n1p4)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
	insmod part_gpt
	insmod ext2
	search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
	linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
	initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
}
submenu 'Advanced options for Manjaro Linux (on /dev/nvme0n1p4)' $menuentry_id_option 'osprober-gnulinux-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
	menuentry 'Manjaro Linux (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel 6.12.48-1-MANJARO x64) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel 6.12.48-1-MANJARO x64 - fallback initramfs) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /initramfs-6.12-x86_64-fallback.img
	}
	menuentry 'Memory Tester (memtest86+) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/memtest86+/memtest.bin--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /memtest86+/memtest.bin 
	}
	menuentry 'Memory Tester (memtest86+) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/memtest86+/memtest.efi--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /memtest86+/memtest.efi 
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
	menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
		fwsetup
		}
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/41_snapshots-btrfs ###
if [ ! -e "${prefix}/grub-btrfs.cfg" ]; then
echo ""
else
submenu 'Manjaro Linux snapshots' {
    configfile "${prefix}/grub-btrfs.cfg"
}
fi
### END /etc/grub.d/41_snapshots-btrfs ###

### BEGIN /etc/grub.d/60_memtest86+ ###
if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        search --fs-uuid --no-floppy --set=root  eae378fb-40ca-4fd3-b46c-58b1a88345b8
        linux16 /memtest86+/memtest.bin 
    }
fi
### END /etc/grub.d/60_memtest86+ ###

### BEGIN /etc/grub.d/60_memtest86+-efi ###
if [ "${grub_platform}" == "efi" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        if loadfont unicode ; then
            set gfxmode=1024x768,800x600,auto
            set gfxpayload=800x600,1024x768
            terminal_output gfxterm
        fi
        search --fs-uuid --no-floppy --set=root  eae378fb-40ca-4fd3-b46c-58b1a88345b8
        linux /memtest86+/memtest.efi 
    }
fi
### END /etc/grub.d/60_memtest86+-efi ###

Same file after update-grub:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

set menu_color_normal=light-gray/black
set menu_color_highlight=green/black

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root 5be28fc1-be69-47de-b656-d5a869416fd4
    font="/@/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root 5be28fc1-be69-47de-b656-d5a869416fd4
insmod gfxmenu
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_24.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_48.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_bold_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_mono_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-18.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b18.pf2
insmod png
set theme=($root)/@/usr/share/grub/themes/manjaro/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod ext2
	search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
	linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
	initrd	/intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
}
submenu 'Advanced options for Manjaro Linux' $menuentry_id_option 'gnulinux-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
	menuentry 'Manjaro Linux (Kernel: 6.12.48-1-MANJARO x64)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.48-1-MANJARO x64-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd	/intel-ucode.img /amd-ucode.img /initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel: 6.12.48-1-MANJARO x64 - fallback initramfs)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.12.48-1-MANJARO x64-fallback-5be28fc1-be69-47de-b656-d5a869416fd4' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux	/vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@  quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd	/initramfs-6.12-x86_64-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/15_ostree ###
### END /etc/grub.d/15_ostree ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/25_bli ###
if [ "$grub_platform" = "efi" ]; then
  insmod bli
fi
### END /etc/grub.d/25_bli ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Manjaro Linux (on /dev/nvme0n1p4)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5be28fc1-be69-47de-b656-d5a869416fd4' {
	insmod part_gpt
	insmod ext2
	search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
	linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
	initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
}
submenu 'Advanced options for Manjaro Linux (on /dev/nvme0n1p4)' $menuentry_id_option 'osprober-gnulinux-advanced-5be28fc1-be69-47de-b656-d5a869416fd4' {
	menuentry 'Manjaro Linux (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel 6.12.48-1-MANJARO x64) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /intel-ucode.img /boot/amd-ucode.img /boot/initramfs-6.12-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel 6.12.48-1-MANJARO x64 - fallback initramfs) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-6.12-x86_64--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /vmlinuz-6.12-x86_64 root=UUID=5be28fc1-be69-47de-b656-d5a869416fd4 rw rootflags=subvol=@ quiet splash resume=UUID=eced3123-24e6-4e9e-9deb-da51e0417c7b udev.log_priority=3
		initrd /initramfs-6.12-x86_64-fallback.img
	}
	menuentry 'Memory Tester (memtest86+) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/memtest86+/memtest.bin--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /memtest86+/memtest.bin 
	}
	menuentry 'Memory Tester (memtest86+) (on /dev/nvme0n1p4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/memtest86+/memtest.efi--5be28fc1-be69-47de-b656-d5a869416fd4' {
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root eae378fb-40ca-4fd3-b46c-58b1a88345b8
		linux /memtest86+/memtest.efi 
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
	menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
		fwsetup
		}
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/41_snapshots-btrfs ###
if [ ! -e "${prefix}/grub-btrfs.cfg" ]; then
echo ""
else
submenu 'Manjaro Linux snapshots' {
    configfile "${prefix}/grub-btrfs.cfg"
}
fi
### END /etc/grub.d/41_snapshots-btrfs ###

### BEGIN /etc/grub.d/60_memtest86+ ###
if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        search --fs-uuid --no-floppy --set=root  eae378fb-40ca-4fd3-b46c-58b1a88345b8
        linux16 /memtest86+/memtest.bin 
    }
fi
### END /etc/grub.d/60_memtest86+ ###

### BEGIN /etc/grub.d/60_memtest86+-efi ###
if [ "${grub_platform}" == "efi" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        if loadfont unicode ; then
            set gfxmode=1024x768,800x600,auto
            set gfxpayload=800x600,1024x768
            terminal_output gfxterm
        fi
        search --fs-uuid --no-floppy --set=root  eae378fb-40ca-4fd3-b46c-58b1a88345b8
        linux /memtest86+/memtest.efi 
    }
fi
### END /etc/grub.d/60_memtest86+-efi ###