[source] otrx: always align image to 0x1000

LEDE Commits lede-commits at lists.infradead.org
Thu Nov 16 00:34:17 PST 2017


rmilecki pushed a commit to source.git, branch master:
https://git.lede-project.org/b15c5639299152f526ee95e333198632e0827470

commit b15c5639299152f526ee95e333198632e0827470
Author: Rafał Miłecki <rafal at milecki.pl>
AuthorDate: Mon Nov 13 23:54:18 2017 +0100

    otrx: always align image to 0x1000
    
    This seems to match what the original trx tool and mjn3's replacement
    do.
    
    Signed-off-by: Rafał Miłecki <rafal at milecki.pl>
---
 package/utils/otrx/src/otrx.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/utils/otrx/src/otrx.c b/package/utils/otrx/src/otrx.c
index 7e117c6..add111a 100644
--- a/package/utils/otrx/src/otrx.c
+++ b/package/utils/otrx/src/otrx.c
@@ -1,7 +1,7 @@
 /*
  * otrx
  *
- * Copyright (C) 2015 Rafał Miłecki <zajec5 at gmail.com>
+ * Copyright (C) 2015-2017 Rafał Miłecki <zajec5 at gmail.com>
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License as published by the Free
@@ -408,6 +408,12 @@ static int otrx_create(int argc, char **argv) {
 			break;
 	}
 
+	sbytes = otrx_create_align(trx, curr_offset, 0x1000);
+	if (sbytes < 0)
+		fprintf(stderr, "Failed to append zeros\n");
+	else
+		curr_offset += sbytes;
+
 	hdr.length = curr_offset;
 	otrx_create_write_hdr(trx, &hdr);
 err_close:



More information about the lede-commits mailing list