mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-20 05:31:30 +00:00
disk: part: implement generic function part_get_info_by_name()
So far partition search by name has been supported only on the EFI partition table. This patch extends the search to all partition tables. Rename part_get_info_efi_by_name() to part_get_info_by_name(), move it from part_efi.c into part.c and make it a generic function which traverses all part drivers and searches all partitions (in the order given by the linked list). For this a new variable struct part_driver.max_entries is added, which limits the number of partitions searched. For EFI this was GPT_ENTRY_NUMBERS. Similarly the limit is defined for DOS, ISO, MAC and AMIGA partition tables. Signed-off-by: Petr Kulhavy <brain@jikos.cz> Reviewed-by: Tom Rini <trini@konsulko.com> Acked-by: Steve Rae <steve.rae@raedomain.com>
This commit is contained in:
parent
ba07984068
commit
87b8530fe2
8 changed files with 53 additions and 33 deletions
|
@ -381,6 +381,7 @@ static void part_print_amiga(struct blk_desc *dev_desc)
|
|||
U_BOOT_PART_TYPE(amiga) = {
|
||||
.name = "AMIGA",
|
||||
.part_type = PART_TYPE_AMIGA,
|
||||
.max_entries = AMIGA_ENTRY_NUMBERS,
|
||||
.get_info = part_get_info_amiga,
|
||||
.print = part_print_amiga,
|
||||
.test = part_test_amiga,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue