From: Felix Fietkau Date: Sun, 25 Feb 2007 17:58:54 +0000 (+0000) Subject: make ptgen print the end offset of the last partition as well X-Git-Tag: v12.09~17480 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=e3b8c1fa598e2470e9c6057523dbbf959e24d78f;p=openwrt-github%2F.git make ptgen print the end offset of the last partition as well git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6358 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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);