upgrade wireless-tools and iproute2
[15.05/openwrt.git] / package / linux / kernel-source / include / trxhdr.h
1 /*
2  * TRX image file header format.
3  *
4  * Copyright 2004, Broadcom Corporation
5  * All Rights Reserved.
6  * 
7  * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
8  * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
9  * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
10  * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
11  *
12  * $Id$
13  */ 
14
15 #include <typedefs.h>
16
17 #define TRX_MAGIC       0x30524448      /* "HDR0" */
18 #define TRX_VERSION     1
19 #define TRX_MAX_LEN     0x3A0000
20 #define TRX_NO_HEADER   1               /* Do not write TRX header */   
21
22 struct trx_header {
23         uint32 magic;           /* "HDR0" */
24         uint32 len;             /* Length of file including header */
25         uint32 crc32;           /* 32-bit CRC from flag_version to end of file */
26         uint32 flag_version;    /* 0:15 flags, 16:31 version */
27         uint32 offsets[3];      /* Offsets of partitions from start of header */
28 };
29
30 /* Compatibility */
31 typedef struct trx_header TRXHDR, *PTRXHDR;