X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Futils%2Fsrc%2Ftrx.c;h=a7a2a54540328d2efa64a5ef0ef83fa64c645657;hb=32a794689db9de29aca836317584e2d1029df28f;hp=79a04026ea2775ba329aef8e970cd68d39e3ba84;hpb=f77b88d124ea1c900f9cf5e04046939aad48bbe1;p=openwrt-10.03%2F.git diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index 79a04026e..a7a2a5454 100644 --- a/target/utils/src/trx.c +++ b/target/utils/src/trx.c @@ -44,8 +44,18 @@ #include #include #include +#if defined(__APPLE__) +#include +#include +#define __BYTE_ORDER BYTE_ORDER +#define __BIG_ENDIAN BIG_ENDIAN +#define bswap_16(x) NXSwapShort(x) +#define bswap_32(x) NXSwapInt(x) +#define bswap_64(x) NXSwapLongLong(x) +#else #include #include +#endif #if __BYTE_ORDER == __BIG_ENDIAN #define STORE32_LE(X) bswap_32(X) @@ -62,7 +72,7 @@ uint32_t crc32buf(char *buf, size_t len); #define TRX_MAGIC 0x30524448 /* "HDR0" */ #define TRX_VERSION 1 -#define TRX_MAX_LEN 0x3A0000 +#define TRX_MAX_LEN 0x5A0000 #define TRX_NO_HEADER 1 /* Do not write TRX header */ struct trx_header {