2022-01-25 07:00:36 +01:00
|
|
|
|
|
|
|
v2: Add menuentry "Help on bootable snapshot" to be excluded as default entry.
|
|
|
|
|
2023-08-24 05:25:56 +02:00
|
|
|
--- a/grub-core/normal/menu.c
|
|
|
|
+++ b/grub-core/normal/menu.c
|
|
|
|
@@ -574,6 +574,43 @@
|
2016-08-15 06:10:39 +02:00
|
|
|
grub_refresh ();
|
|
|
|
}
|
|
|
|
|
|
|
|
+/* bsc#956046 - The first entry titled 'Bootable snapshot #$NUM' is inserted on
|
|
|
|
+ top at runtime to display current snapshot information. If default entry is
|
|
|
|
+ using number as key to index the entry, the result will be shifted so here we
|
|
|
|
+ add specical handling to shift it back. We apply this workaround until a better
|
|
|
|
+ solution can be found. */
|
|
|
|
+static void
|
|
|
|
+workaround_snapshot_menu_default_entry (grub_menu_t menu, const char *name, int *default_entry)
|
|
|
|
+{
|
|
|
|
+ grub_menu_entry_t entry;
|
2022-01-25 07:00:36 +01:00
|
|
|
+ if ((entry = grub_menu_get_entry (menu, 0)) &&
|
|
|
|
+ ((entry->submenu && grub_strncmp (entry->title, "Bootable snapshot", sizeof("Bootable snapshot") - 1) == 0) ||
|
|
|
|
+ (!entry->submenu && grub_strncmp (entry->title, "Help on bootable snapshot", sizeof("Help on bootable snapshot") - 1) == 0)))
|
2016-08-15 06:10:39 +02:00
|
|
|
+ {
|
|
|
|
+ const char *val;
|
|
|
|
+
|
|
|
|
+ if (*default_entry == -1 && menu->size > 1)
|
|
|
|
+ {
|
|
|
|
+ *default_entry = 1;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ val = grub_env_get (name);
|
|
|
|
+
|
|
|
|
+ grub_error_push ();
|
|
|
|
+
|
|
|
|
+ if (val)
|
|
|
|
+ grub_strtoul (val, 0, 0);
|
|
|
|
+
|
|
|
|
+ if (*default_entry < (menu->size - 1) && grub_errno == GRUB_ERR_NONE)
|
|
|
|
+ ++(*default_entry);
|
|
|
|
+
|
|
|
|
+ grub_error_pop ();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#define GRUB_MENU_PAGE_SIZE 10
|
|
|
|
|
|
|
|
/* Show the menu and handle menu entry selection. Returns the menu entry
|
2023-08-24 05:25:56 +02:00
|
|
|
@@ -594,6 +631,8 @@
|
2016-08-15 06:10:39 +02:00
|
|
|
|
|
|
|
default_entry = get_entry_number (menu, "default");
|
|
|
|
|
|
|
|
+ workaround_snapshot_menu_default_entry (menu, "default", &default_entry);
|
|
|
|
+
|
|
|
|
/* If DEFAULT_ENTRY is not within the menu entries, fall back to
|
|
|
|
the first entry. */
|
|
|
|
if (default_entry < 0 || default_entry >= menu->size)
|