1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 10:56:21 +03:00

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
This commit is contained in:
nbd 2007-02-25 17:58:54 +00:00
parent d415d5f3e6
commit a7d3700301

View File

@ -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);