mirror of https://github.com/hak5/openwrt.git
firmware-utils: mkedimaximg: add "big-endianness mode" option
In addition to the default little-endianness format, I added a mode so that we can generate firmware with big-endianness format. example: ELECOM WRC-300GHBK2-I (QCA9563) Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>openwrt-19.07
parent
628eb271dc
commit
7a67b437e7
|
@ -17,12 +17,19 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <endian.h> /* for __BYTE_ORDER */
|
#include <endian.h> /* for __BYTE_ORDER */
|
||||||
|
|
||||||
|
#define FALSE 0
|
||||||
|
#define TRUE 1
|
||||||
|
|
||||||
#if (__BYTE_ORDER == __LITTLE_ENDIAN)
|
#if (__BYTE_ORDER == __LITTLE_ENDIAN)
|
||||||
# define HOST_TO_LE16(x) (x)
|
# define HOST_TO_LE16(x) (x)
|
||||||
# define HOST_TO_LE32(x) (x)
|
# define HOST_TO_LE32(x) (x)
|
||||||
|
# define HOST_TO_BE16(x) bswap_16(x)
|
||||||
|
# define HOST_TO_BE32(x) bswap_32(x)
|
||||||
#else
|
#else
|
||||||
# define HOST_TO_LE16(x) bswap_16(x)
|
# define HOST_TO_LE16(x) bswap_16(x)
|
||||||
# define HOST_TO_LE32(x) bswap_32(x)
|
# define HOST_TO_LE32(x) bswap_32(x)
|
||||||
|
# define HOST_TO_BE16(x) (x)
|
||||||
|
# define HOST_TO_BE32(x) (x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct header
|
struct header
|
||||||
|
@ -47,6 +54,7 @@ struct buf
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *progname;
|
static char *progname;
|
||||||
|
static int force_be = FALSE;
|
||||||
|
|
||||||
static void usage(int status)
|
static void usage(int status)
|
||||||
{
|
{
|
||||||
|
@ -61,7 +69,8 @@ static void usage(int status)
|
||||||
" -i <file> read input from file <file>\n"
|
" -i <file> read input from file <file>\n"
|
||||||
" -o <file> write output to file <file>\n"
|
" -o <file> write output to file <file>\n"
|
||||||
" -f <flash> set flash address to <flash>\n"
|
" -f <flash> set flash address to <flash>\n"
|
||||||
" -S <start> set start address to <start>\n");
|
" -S <start> set start address to <start>\n"
|
||||||
|
" -b big-endianness mode\n");
|
||||||
|
|
||||||
exit(status);
|
exit(status);
|
||||||
}
|
}
|
||||||
|
@ -83,8 +92,12 @@ static unsigned short fwcsum (struct buf *buf) {
|
||||||
int i;
|
int i;
|
||||||
unsigned short ret = 0;
|
unsigned short ret = 0;
|
||||||
|
|
||||||
for (i = 0; i < buf->size / 2; i++)
|
for (i = 0; i < buf->size / 2; i++) {
|
||||||
ret -= ((unsigned short *) buf->start)[i];
|
if (force_be == FALSE)
|
||||||
|
ret -= ((unsigned short *) buf->start)[i];
|
||||||
|
else
|
||||||
|
ret -= HOST_TO_BE16(((unsigned short *) buf->start)[i]);
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -144,7 +157,7 @@ int main(int argc, char **argv)
|
||||||
header.flash = header.size = header.start = 0;
|
header.flash = header.size = header.start = 0;
|
||||||
progname = basename(argv[0]);
|
progname = basename(argv[0]);
|
||||||
|
|
||||||
while((c = getopt(argc, argv, "i:o:m:s:f:S:h")) != -1) {
|
while((c = getopt(argc, argv, "i:o:m:s:f:S:h:b")) != -1) {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'i':
|
case 'i':
|
||||||
ifinfo.name = optarg;
|
ifinfo.name = optarg;
|
||||||
|
@ -181,6 +194,9 @@ int main(int argc, char **argv)
|
||||||
usage(EXIT_FAILURE);
|
usage(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 'b':
|
||||||
|
force_be = TRUE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
usage(EXIT_FAILURE);
|
usage(EXIT_FAILURE);
|
||||||
break;
|
break;
|
||||||
|
@ -241,12 +257,23 @@ int main(int argc, char **argv)
|
||||||
if (fwread(&ifinfo, &ibuf))
|
if (fwread(&ifinfo, &ibuf))
|
||||||
usage(EXIT_FAILURE);
|
usage(EXIT_FAILURE);
|
||||||
|
|
||||||
header.flash = HOST_TO_LE32(header.flash);
|
if (force_be == FALSE) {
|
||||||
header.size = HOST_TO_LE32(obuf.size - sizeof(struct header));
|
header.flash = HOST_TO_LE32(header.flash);
|
||||||
header.start = HOST_TO_LE32(header.start);
|
header.size = HOST_TO_LE32(obuf.size - sizeof(struct header));
|
||||||
|
header.start = HOST_TO_LE32(header.start);
|
||||||
|
} else {
|
||||||
|
header.flash = HOST_TO_BE32(header.flash);
|
||||||
|
header.size = HOST_TO_BE32(obuf.size - sizeof(struct header));
|
||||||
|
header.start = HOST_TO_BE32(header.start);
|
||||||
|
}
|
||||||
|
|
||||||
memcpy (obuf.start, &header, sizeof(struct header));
|
memcpy (obuf.start, &header, sizeof(struct header));
|
||||||
|
|
||||||
csum = HOST_TO_LE16(fwcsum(&ibuf));
|
if (force_be == FALSE)
|
||||||
|
csum = HOST_TO_LE16(fwcsum(&ibuf));
|
||||||
|
else
|
||||||
|
csum = HOST_TO_BE16(fwcsum(&ibuf));
|
||||||
|
|
||||||
memcpy(obuf.start + obuf.size - sizeof(unsigned short),
|
memcpy(obuf.start + obuf.size - sizeof(unsigned short),
|
||||||
&csum, sizeof(unsigned short));
|
&csum, sizeof(unsigned short));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue