From 54f993c5128d940288965b4b73f9708060b1c128 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 5 Aug 2026 14:58:38 -0300 Subject: [PATCH] Log os-prober enablement during GRUB setup The os-prober block straps packages and edits /etc/default/grub without leaving any trace in the install log. Add a debug marker, matching the logging convention of the surrounding bootloader steps. --- archinstall/lib/installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index f4dd8b25..1adbcef4 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -1432,6 +1432,8 @@ class Installer: grub_default.write_text(config) if os_prober: + debug('Enabling os-prober in GRUB configuration') + # fuse3 enables grub-mount, which os-prober requires to inspect # partitions that are not mounted (e.g. Windows on another disk) self.pacman.strap(['os-prober', 'fuse3'])