mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
partitions: increase MAX_SEARCH_PARTITIONS and move to part.h
Move MAX_SEARCH_PARTITIONS to part.h so that functions in cmd directory can find it. At the same time, increase the value to 64 since some operating systems use many, and the resources consumed by a larger value are minimal. Changes since v6: none. Signed-off-by: Alison Chaiken <alison@peloton-tech.com>
This commit is contained in:
parent
52791db74f
commit
e6faf21f25
2 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,6 @@ cleanup:
|
|||
|
||||
#define PART_UNSPECIFIED -2
|
||||
#define PART_AUTO -1
|
||||
#define MAX_SEARCH_PARTITIONS 16
|
||||
int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
|
||||
struct blk_desc **dev_desc,
|
||||
disk_partition_t *info, int allow_whole_dev)
|
||||
|
|
|
@ -49,6 +49,7 @@ struct block_drvr {
|
|||
|
||||
#define PART_NAME_LEN 32
|
||||
#define PART_TYPE_LEN 32
|
||||
#define MAX_SEARCH_PARTITIONS 64
|
||||
|
||||
typedef struct disk_partition {
|
||||
lbaint_t start; /* # of first block in partition */
|
||||
|
|
Loading…
Add table
Reference in a new issue