aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware-utils
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2020-06-13 23:39:15 +0100
committerPetr Štetiar <ynezz@true.cz>2020-07-08 23:22:30 +0200
commitdca867c5a368045efe38db0ed9bc393ba9a2c9f4 (patch)
treedb90ec2a2890480dca8f1b1126e53d2ee56bd1a4 /tools/firmware-utils
parentc07d0d7f3ecccbd8f877059030060cd7fe6926a9 (diff)
downloadupstream-dca867c5a368045efe38db0ed9bc393ba9a2c9f4.tar.gz
upstream-dca867c5a368045efe38db0ed9bc393ba9a2c9f4.tar.bz2
upstream-dca867c5a368045efe38db0ed9bc393ba9a2c9f4.zip
firmware-utils/ptgen: allow explicit placement of partitions
For Banana Pi R2 we need to place the U-Boot partition at precisely 0x50000. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r--tools/firmware-utils/src/ptgen.c30
1 files changed, 27 insertions, 3 deletions
diff --git a/tools/firmware-utils/src/ptgen.c b/tools/firmware-utils/src/ptgen.c
index 83067c104d..223ee29561 100644
--- a/tools/firmware-utils/src/ptgen.c
+++ b/tools/firmware-utils/src/ptgen.c
@@ -106,6 +106,7 @@ struct pte {
};
struct partinfo {
+ unsigned long start;
unsigned long size;
int type;
};
@@ -290,8 +291,16 @@ static int gen_ptable(uint32_t signature, int nr)
pte[i].type = parts[i].type;
start = sect + sectors;
- if (kb_align != 0)
+ if (parts[i].start != 0) {
+ if (parts[i].start * 2 < start) {
+ fprintf(stderr, "Invalid start %ld for partition %d!\n",
+ parts[i].start, i);
+ return ret;
+ }
+ start = parts[i].start * 2;
+ } else if (kb_align != 0) {
start = round_to_kb(start);
+ }
pte[i].start = cpu_to_le32(start);
sect = start + parts[i].size * 2;
@@ -369,8 +378,16 @@ static int gen_gptable(uint32_t signature, guid_t guid, unsigned nr)
return ret;
}
start = sect + sectors;
- if (kb_align != 0)
+ if (parts[i].start != 0) {
+ if (parts[i].start * 2 < start) {
+ fprintf(stderr, "Invalid start %ld for partition %d!\n",
+ parts[i].start, i);
+ return ret;
+ }
+ start = parts[i].start * 2;
+ } else if (kb_align != 0) {
start = round_to_kb(start);
+ }
gpte[i].start = cpu_to_le64(start);
sect = start + parts[i].size * 2;
@@ -481,13 +498,14 @@ fail:
static void usage(char *prog)
{
- fprintf(stderr, "Usage: %s [-v] [-n] [-g] -h <heads> -s <sectors> -o <outputfile> [-a 0..4] [-l <align kB>] [-G <guid>] [[-t <type>] -p <size>...] \n", prog);
+ fprintf(stderr, "Usage: %s [-v] [-n] [-g] -h <heads> -s <sectors> -o <outputfile> [-a 0..4] [-l <align kB>] [-G <guid>] [[-t <type>] -p <size>[@<start>]...] \n", prog);
exit(EXIT_FAILURE);
}
int main (int argc, char **argv)
{
unsigned char type = 0x83;
+ char *p;
int ch;
int part = 0;
uint32_t signature = 0x5452574F; /* 'OWRT' */
@@ -519,7 +537,13 @@ int main (int argc, char **argv)
fputs("Too many partitions\n", stderr);
exit(EXIT_FAILURE);
}
+ p = strchr(optarg, '@');
+ if (p) {
+ *(p++) = 0;
+ parts[part].start = to_kbytes(p);
+ }
parts[part].size = to_kbytes(optarg);
+ fprintf(stderr, "part %ld %ld\n", parts[part].start, parts[part].size);
parts[part++].type = type;
break;
case 't':