From 7538551067e9494252f7d76019e60b8fe49764ed Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 27 Sep 2006 18:53:40 +0000 Subject: [PATCH] add -f option to make adding files to the trx command line explicit (otherwise not usable on mac os x) SVN-Revision: 4870 --- openwrt/target/utils/src/trx.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/openwrt/target/utils/src/trx.c b/openwrt/target/utils/src/trx.c index a7a2a54540..abc9bc93c4 100644 --- a/openwrt/target/utils/src/trx.c +++ b/openwrt/target/utils/src/trx.c @@ -45,8 +45,8 @@ #include #include #if defined(__APPLE__) -#include -#include +#include +#include #define __BYTE_ORDER BYTE_ORDER #define __BIG_ENDIAN BIG_ENDIAN #define bswap_16(x) NXSwapShort(x) @@ -89,7 +89,7 @@ void usage(void) __attribute__ (( __noreturn__ )); void usage(void) { - fprintf(stderr, "Usage: trx [-o outfile] [-m maxlen] [-a align] [-b offset] file [file [file]]\n"); + fprintf(stderr, "Usage: trx [-o outfile] [-m maxlen] [-a align] [-b offset] [-f file] [-f file [-f file]]\n"); exit(EXIT_FAILURE); } @@ -122,8 +122,9 @@ int main(int argc, char **argv) in = NULL; i = 0; - while ((c = getopt(argc, argv, "-:o:m:a:b:")) != -1) { + while ((c = getopt(argc, argv, "-:o:m:a:b:f:")) != -1) { switch (c) { + case 'f': case 1: p->offsets[i++] = STORE32_LE(cur_len); -- 2.25.1