Snapshot booting is enabled:
erlangen:~ # tail -22 /boot/grub2/grub.cfg
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/80_suse_btrfs_snapshot ###
btrfs-mount-subvol ($root) /.snapshots @/.snapshots
if -f "/.snapshots/grub-snapshot.cfg" ]; then
source "/.snapshots/grub-snapshot.cfg"
fi
### END /etc/grub.d/80_suse_btrfs_snapshot ###
### BEGIN /etc/grub.d/90_persistent ###
### END /etc/grub.d/90_persistent ###
### BEGIN /etc/grub.d/95_textmode ###
# On EFI systems we can only have graphics *or* serial, so allow the user
# to switch between the two
hiddenentry 'Text mode' --hotkey 't' {
set textmode=true
terminal_output console
}
### END /etc/grub.d/95_textmode ###
erlangen:~ #
Configuration files exist:
erlangen:~ # cat /.snapshots/grub-snapshot.cfg
if -z "$extra_cmdline" ]; then
submenu "Start bootloader from a read-only snapshot" {
if -f "/.snapshots/704/grub-snapshot.cfg" ]; then
source "/.snapshots/704/grub-snapshot.cfg"
fi
if -f "/.snapshots/703/grub-snapshot.cfg" ]; then
source "/.snapshots/703/grub-snapshot.cfg"
fi
if -f "/.snapshots/702/grub-snapshot.cfg" ]; then
source "/.snapshots/702/grub-snapshot.cfg"
fi
if -f "/.snapshots/701/grub-snapshot.cfg" ]; then
source "/.snapshots/701/grub-snapshot.cfg"
fi
if x$snapshot_found != xtrue ]; then
submenu "Not Found" { true; }
fi
}
fi
erlangen:~ #
However no menu entries are shown when booting. Any idea?