[grub] update embedded GRUB to 2.06

* Also enable NTFS and ext# as GRUB2 compatible file systems.
This commit is contained in:
Pete Batard 2021-07-27 18:10:29 +01:00
parent 6ed7524c1b
commit 8ceb0045fa
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
8 changed files with 26 additions and 20 deletions

View file

@ -188,13 +188,17 @@ static void SetAllowedFileSystems(void)
}
}
break;
case BT_GRUB2:
allowed_filesystem[FS_EXT2] = TRUE;
allowed_filesystem[FS_EXT3] = TRUE;
allowed_filesystem[FS_EXT4] = TRUE;
// Fall through
case BT_SYSLINUX_V6:
case BT_GRUB4DOS:
allowed_filesystem[FS_NTFS] = TRUE;
// Fall through
case BT_SYSLINUX_V4:
case BT_REACTOS:
case BT_GRUB2:
allowed_filesystem[FS_FAT16] = TRUE;
allowed_filesystem[FS_FAT32] = TRUE;
break;