diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-25 17:58:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-25 17:58:54 +0000 |
commit | 41ac34a2a29b21ff42c51336db6df34c134eb658 (patch) | |
tree | efd43f259db8d09535ac2831370db6ddcea759df /tools | |
parent | ced1277147f529e3bcc2eddbc3fe6e78eff562a8 (diff) | |
download | upstream-41ac34a2a29b21ff42c51336db6df34c134eb658.tar.gz upstream-41ac34a2a29b21ff42c51336db6df34c134eb658.tar.bz2 upstream-41ac34a2a29b21ff42c51336db6df34c134eb658.zip |
make ptgen print the end offset of the last partition as well
SVN-Revision: 6358
Diffstat (limited to 'tools')
-rw-r--r-- | tools/firmware-utils/src/ptgen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/ptgen.c b/tools/firmware-utils/src/ptgen.c index 277fbbc134..ce93016667 100644 --- a/tools/firmware-utils/src/ptgen.c +++ b/tools/firmware-utils/src/ptgen.c @@ -141,6 +141,7 @@ static int gen_ptable(int nr) fprintf(stderr, "Partition %d: start=%ld, end=%ld, size=%ld\n", i, (long) start * 512, ((long) start + (long) len) * 512, (long) len * 512); printf("%ld\n", ((long) start * 512)); } + printf("%ld\n", ((long) (start + len) * 512)); if ((fd = open(filename, O_WRONLY|O_CREAT, 0644)) < 0) { fprintf(stderr, "Can't open output file '%s'\n",filename); |