summaryrefslogtreecommitdiff
path: root/src/include/trxhdr.h
diff options
context:
space:
mode:
authorHoward M. Harte <hharte@broadcom.com>2011-05-19 09:57:48 -0700
committerHoward M. Harte <hharte@broadcom.com>2011-05-19 09:59:21 -0700
commitca0b09d37a38651a0d4f4e10f681cea35bdd89a9 (patch)
treedf38f0cdf4181aaa21fb89f5f7377a6a9998b619 /src/include/trxhdr.h
parent5a9fa0a3f89b1d07d6e773a24b7f3a9aa8a18f7c (diff)
downloadbroadcom-ca0b09d37a38651a0d4f4e10f681cea35bdd89a9.tar.gz
Update driver to 5.90.125.14.
Change-Id: I20ea59ce451d70118c6fead8a7372ce37b8be179
Diffstat (limited to 'src/include/trxhdr.h')
-rw-r--r--src/include/trxhdr.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/include/trxhdr.h b/src/include/trxhdr.h
index c7bb3ec..397006a 100644
--- a/src/include/trxhdr.h
+++ b/src/include/trxhdr.h
@@ -1,7 +1,7 @@
/*
* TRX image file header format.
*
- * Copyright (C) 1999-2009, Broadcom Corporation
+ * Copyright (C) 1999-2011, Broadcom Corporation
*
* Unless you and Broadcom execute a separate written software license
* agreement governing use of this software, this software is licensed to you
@@ -21,16 +21,20 @@
* software in any way with any other Broadcom software provided under a license
* other than the GPL, without Broadcom's express prior written consent.
*
- * $Id: trxhdr.h,v 13.11.310.1 2008/08/17 12:58:58 Exp $
+ * $Id: trxhdr.h,v 13.15.108.2 2010-11-15 17:57:30 Exp $
*/
+#ifndef _TRX_HDR_H_
+#define _TRX_HDR_H_
+
#include <typedefs.h>
#define TRX_MAGIC 0x30524448 /* "HDR0" */
#define TRX_VERSION 1 /* Version 1 */
-#define TRX_MAX_LEN 0x3A0000 /* Max length */
+#define TRX_MAX_LEN 0x3B0000 /* Max length */
#define TRX_NO_HEADER 1 /* Do not write TRX header */
#define TRX_GZ_FILES 0x2 /* Contains up to TRX_MAX_OFFSET individual gzip files */
+#define TRX_OVERLAYS 0x4 /* Contains an overlay header after the trx header */
#define TRX_MAX_OFFSET 3 /* Max number of individual files */
#define TRX_UNCOMP_IMAGE 0x20 /* Trx contains uncompressed rtecdc.bin image */
@@ -44,3 +48,5 @@ struct trx_header {
/* Compatibility */
typedef struct trx_header TRXHDR, *PTRXHDR;
+
+#endif /* _TRX_HDR_H_ */