Hi,
I’ve just noticed that my system (Tumbleweed 20201022) in Grub2 is missing the snapshots menu entry. I know that previously the case was that /boot has to be on / with btrfs, I’m not sure if this is still the case based on this .
In my case the system is installed with a separate /boot partition formatted to xfs, but / is btrfs. If this case is not supported please let me know otherwise I could use some advice about what to check.
-
grub2-snapper-plugin is installed.
-
My grub.cfg is here
-
My /.snapshots/grub-snapshot.cfg:
$ cat /.snapshots/grub-snapshot.cfg
if -z "$extra_cmdline" ]; then
submenu "Start bootloader from a read-only snapshot" {
if x$snapshot_found != xtrue ]; then
submenu "Not Found" { true; }
fi
}
fi
- My /etc/sysconfig/bootloader config:
**$ **cat /etc/sysconfig/bootloader
## Path: System/Bootloader
## Description: Bootloader configuration
## Type: list(grub,grub2,grub2-efi,none)
## Default: grub2
#
# Type of bootloader in use.
# For making the change effect run bootloader configuration tool
# and configure newly selected bootloader
#
#
LOADER_TYPE="grub2-efi"
## Path: System/Bootloader
## Description: Bootloader configuration
## Type: yesno
## Default: "no"
#
# Enable Secure Boot support
# Only available on UEFI systems and IBM z15+.
#
#
SECURE_BOOT="yes"
## Path: System/Bootloader
## Description: Bootloader configuration
## Type: yesno
## Default: "no"
#
# Enable Trusted Boot support
# Only available on hardware with a Trusted Platform Module.
#
TRUSTED_BOOT="no"
## Path: System/Bootloader
## Description: Bootloader configuration
## Type: yesno
## Default: "yes"
#
# Update nvram boot settings (UEFI, OF)
# Unset to preserve specific settings or workaround firmware issues.
#
UPDATE_NVRAM="yes"