* grub-core/disk/efi/efidisk.c: Handle partitions on non-512B disks.
Also-By: Vladimir Serbinenko <phcoder@gmail.com>
This commit is contained in:
parent
f75835bdad
commit
efe0cddae8
2 changed files with 19 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
2013-04-04 Peter Jones <pjones@redhat.com>
|
||||
|
||||
* grub-core/disk/efi/efidisk.c: Handle partitions on non-512B disks.
|
||||
|
||||
2013-04-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Use TSC as a possible time source on i386-ieee1275.
|
||||
|
|
|
@ -659,9 +659,11 @@ grub_efidisk_get_device_handle (grub_disk_t disk)
|
|||
&& (GRUB_EFI_DEVICE_PATH_SUBTYPE (c->last_device_path)
|
||||
== GRUB_EFI_HARD_DRIVE_DEVICE_PATH_SUBTYPE)
|
||||
&& (grub_partition_get_start (disk->partition)
|
||||
== hd.partition_start)
|
||||
== (hd.partition_start << (disk->log_sector_size
|
||||
- GRUB_DISK_SECTOR_BITS)))
|
||||
&& (grub_partition_get_len (disk->partition)
|
||||
== hd.partition_size))
|
||||
== (hd.partition_size << (disk->log_sector_size
|
||||
- GRUB_DISK_SECTOR_BITS))))
|
||||
{
|
||||
handle = c->handle;
|
||||
break;
|
||||
|
@ -738,8 +740,12 @@ grub_efidisk_get_device_name_iter (grub_disk_t disk __attribute__ ((unused)),
|
|||
{
|
||||
struct grub_efidisk_get_device_name_ctx *ctx = data;
|
||||
|
||||
if (grub_partition_get_start (part) == ctx->hd.partition_start
|
||||
&& grub_partition_get_len (part) == ctx->hd.partition_size)
|
||||
if (grub_partition_get_start (part)
|
||||
== (ctx->hd.partition_start << (disk->log_sector_size
|
||||
- GRUB_DISK_SECTOR_BITS))
|
||||
&& grub_partition_get_len (part)
|
||||
== (ctx->hd.partition_size << (disk->log_sector_size
|
||||
- GRUB_DISK_SECTOR_BITS)))
|
||||
{
|
||||
ctx->partition_name = grub_partition_get_name (part);
|
||||
return 1;
|
||||
|
@ -798,7 +804,9 @@ grub_efidisk_get_device_name (grub_efi_handle_t *handle)
|
|||
ctx.partition_name = NULL;
|
||||
grub_memcpy (&ctx.hd, ldp, sizeof (ctx.hd));
|
||||
if (ctx.hd.partition_start == 0
|
||||
&& ctx.hd.partition_size == grub_disk_get_size (parent))
|
||||
&& (ctx.hd.partition_size << (parent->log_sector_size
|
||||
- GRUB_DISK_SECTOR_BITS))
|
||||
== grub_disk_get_size (parent))
|
||||
{
|
||||
dev_name = grub_strdup (parent->name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue