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.
This commit is contained in:
parent
5edf382dd3
commit
54f993c512
|
|
@ -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'])
|
||||
|
|
|
|||
Loading…
Reference in New Issue