2005-02-12 Hollis Blanchard <hollis@penguinppc.org>
* kern/partition.c (grub_partition_probe): Clear `grub_errno' and return 0 if `grub_errno' is GRUB_ERR_BAD_PART_TABLE. (part_map_iterate): Clear `grub_errno' and return 0 if `partmap->iterate' returns GRUB_ERR_BAD_PART_TABLE. * partmap/amiga.c (amiga_partition_map_iterate): Return GRUB_ERR_BAD_PART_TABLE if no partition map magic is found. * partmap/apple.c (apple_partition_map_iterate): Likewise.
This commit is contained in:
parent
aca108aae6
commit
1b14a681e4
4 changed files with 43 additions and 9 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2005-02-12 Hollis Blanchard <hollis@penguinppc.org>
|
||||||
|
|
||||||
|
* kern/partition.c (grub_partition_probe): Clear `grub_errno' and
|
||||||
|
return 0 if `grub_errno' is GRUB_ERR_BAD_PART_TABLE.
|
||||||
|
(part_map_iterate): Clear `grub_errno' and return 0 if
|
||||||
|
`partmap->iterate' returns GRUB_ERR_BAD_PART_TABLE.
|
||||||
|
* partmap/amiga.c (amiga_partition_map_iterate): Return
|
||||||
|
GRUB_ERR_BAD_PART_TABLE if no partition map magic is found.
|
||||||
|
* partmap/apple.c (apple_partition_map_iterate): Likewise.
|
||||||
|
|
||||||
2005-02-01 Guillem Jover <guillem@hadrons.org>
|
2005-02-01 Guillem Jover <guillem@hadrons.org>
|
||||||
|
|
||||||
* loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Fix module
|
* loader/i386/pc/multiboot_normal.c (GRUB_MOD_INIT): Fix module
|
||||||
|
|
|
@ -64,9 +64,17 @@ grub_partition_probe (struct grub_disk *disk, const char *str)
|
||||||
part = partmap->probe (disk, str);
|
part = partmap->probe (disk, str);
|
||||||
if (part)
|
if (part)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
if (grub_errno == GRUB_ERR_BAD_PART_TABLE)
|
||||||
|
{
|
||||||
|
/* Continue to next partition map type. */
|
||||||
|
grub_errno = GRUB_ERR_NONE;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* Use the first partition map type found. */
|
/* Use the first partition map type found. */
|
||||||
grub_partition_map_iterate (part_map_probe);
|
grub_partition_map_iterate (part_map_probe);
|
||||||
|
|
||||||
|
@ -81,7 +89,16 @@ grub_partition_iterate (struct grub_disk *disk,
|
||||||
|
|
||||||
int part_map_iterate (const grub_partition_map_t partmap)
|
int part_map_iterate (const grub_partition_map_t partmap)
|
||||||
{
|
{
|
||||||
return partmap->iterate (disk, hook);
|
grub_err_t err = partmap->iterate (disk, hook);
|
||||||
|
|
||||||
|
if (err == GRUB_ERR_BAD_PART_TABLE)
|
||||||
|
{
|
||||||
|
/* Continue to next partition map type. */
|
||||||
|
grub_errno = GRUB_ERR_NONE;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
grub_partition_map_iterate (part_map_iterate);
|
grub_partition_map_iterate (part_map_iterate);
|
||||||
|
|
|
@ -103,6 +103,10 @@ amiga_partition_map_iterate (grub_disk_t disk,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (next == -1)
|
||||||
|
return grub_error (GRUB_ERR_BAD_PART_TABLE,
|
||||||
|
"Amiga partition map not found.");
|
||||||
|
|
||||||
/* The end of the partition list is marked using "-1". */
|
/* The end of the partition list is marked using "-1". */
|
||||||
while (next != -1)
|
while (next != -1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -134,6 +134,10 @@ apple_partition_map_iterate (grub_disk_t disk,
|
||||||
partno++;
|
partno++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((pos / GRUB_DISK_SECTOR_SIZE) == 0)
|
||||||
|
return grub_error (GRUB_ERR_BAD_PART_TABLE,
|
||||||
|
"Apple partition map not found.");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -178,7 +182,6 @@ apple_partition_map_probe (grub_disk_t disk, const char *str)
|
||||||
fail:
|
fail:
|
||||||
grub_free (p);
|
grub_free (p);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue