mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 11:09:57 +08:00
tools/mkfwimage2: remove 256 length limit for partition images
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
This commit is contained in:
parent
9233db23f3
commit
5a5934f0c2
@ -197,6 +197,10 @@ int str2u32(char *arg, u_int32_t *val)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef STRINGIFY
|
||||||
|
#define STRINGIFY2(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY2(X)
|
||||||
|
#endif
|
||||||
static int image_layout_add_partition(const char *part_desc)
|
static int image_layout_add_partition(const char *part_desc)
|
||||||
{
|
{
|
||||||
part_data_t *d;
|
part_data_t *d;
|
||||||
@ -212,7 +216,7 @@ static int image_layout_add_partition(const char *part_desc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
d = &im.parts[im.part_count];
|
d = &im.parts[im.part_count];
|
||||||
t = sscanf(part_desc, "%15[-0-9a-zA-Z]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%256s",
|
t = sscanf(part_desc, "%15[-0-9a-zA-Z]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%15[0-9a-fA-Fx]:%"STRINGIFY(PATH_MAX)"s",
|
||||||
d->partition_name,
|
d->partition_name,
|
||||||
offset,
|
offset,
|
||||||
length,
|
length,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user