forked from pool/grub2
23 lines
819 B
Diff
23 lines
819 B
Diff
|
Index: grub-1.99/grub-core/partmap/msdos.c
|
||
|
===================================================================
|
||
|
--- grub-1.99.orig/grub-core/partmap/msdos.c
|
||
|
+++ grub-1.99/grub-core/partmap/msdos.c
|
||
|
@@ -107,11 +107,15 @@ grub_partition_msdos_iterate (grub_disk_
|
||
|
return grub_error (GRUB_ERR_BAD_PART_TABLE, "dummy mbr");
|
||
|
|
||
|
/* If this partition is a normal one, call the hook. */
|
||
|
- if (! grub_msdos_partition_is_empty (e->type)
|
||
|
- && ! grub_msdos_partition_is_extended (e->type))
|
||
|
+ if (! grub_msdos_partition_is_empty (e->type))
|
||
|
{
|
||
|
p.number++;
|
||
|
|
||
|
+ /* prevent someone doing mkfs or mkswap on an
|
||
|
+ extended partition, but leave room for LILO */
|
||
|
+ if (grub_msdos_partition_is_extended (e->type))
|
||
|
+ p.len = 2;
|
||
|
+
|
||
|
if (hook (disk, &p))
|
||
|
return grub_errno;
|
||
|
}
|