d108ec594a
- Introduces a new package, grub2-x86_64-efi-bls, which includes a straightforward grubbls.efi file. This file can be copied to the EFI System Partition (ESP) along with boot fragments in the Boot Loader Specification (BLS) format * 0001-Streamline-BLS-and-improve-PCR-stability.patch - Fix crash in bli module (bsc#1226497) * 0001-bli-Fix-crash-in-get_part_uuid.patch - Rework package dependencies: grub2-common now includes common userland utilities and is required by grub2 platform packages. grub2 is now a meta package that pulls in the default platform package. OBS-URL: https://build.opensuse.org/request/show/1196023 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=512
45 lines
1.2 KiB
Diff
45 lines
1.2 KiB
Diff
--- a/grub-core/fs/btrfs.c
|
|
+++ b/grub-core/fs/btrfs.c
|
|
@@ -1340,10 +1340,40 @@
|
|
}
|
|
|
|
static grub_err_t
|
|
+lookup_root_by_name_fallback(struct grub_btrfs_data *data, const char *path)
|
|
+{
|
|
+ grub_err_t err;
|
|
+ grub_uint64_t tree = 0;
|
|
+ grub_uint8_t type;
|
|
+ struct grub_btrfs_key key;
|
|
+
|
|
+ err = find_path (data, path, &key, &tree, &type);
|
|
+ if (err)
|
|
+ return grub_error(GRUB_ERR_FILE_NOT_FOUND, "couldn't locate %s\n", path);
|
|
+
|
|
+ if (key.object_id != grub_cpu_to_le64_compile_time (GRUB_BTRFS_OBJECT_ID_CHUNK) || tree == 0)
|
|
+ return grub_error(GRUB_ERR_BAD_FILE_TYPE, "%s: not a subvolume\n", path);
|
|
+
|
|
+ data->fs_tree = tree;
|
|
+ return GRUB_ERR_NONE;
|
|
+}
|
|
+
|
|
+static grub_err_t
|
|
btrfs_handle_subvol(struct grub_btrfs_data *data __attribute__ ((unused)))
|
|
{
|
|
if (btrfs_default_subvol)
|
|
- return lookup_root_by_name(data, btrfs_default_subvol);
|
|
+ {
|
|
+ grub_err_t err;
|
|
+ err = lookup_root_by_name(data, btrfs_default_subvol);
|
|
+
|
|
+ /* Fallback to old schemes */
|
|
+ if (err == GRUB_ERR_FILE_NOT_FOUND)
|
|
+ {
|
|
+ err = GRUB_ERR_NONE;
|
|
+ return lookup_root_by_name_fallback(data, btrfs_default_subvol);
|
|
+ }
|
|
+ return err;
|
|
+ }
|
|
|
|
if (btrfs_default_subvolid)
|
|
return lookup_root_by_id(data, btrfs_default_subvolid);
|