mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 20:22:48 +02:00
638d4ea3a7
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16406 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
614 B
C
26 lines
614 B
C
#ifndef GT_IMGHDR_H
|
|
#define GT_IMGHDR_H
|
|
|
|
#define GTIMG_MAGIC "GMTK"
|
|
|
|
/* Product ID */
|
|
#define PID_RTL_AIRGO 1
|
|
#define PID_RTL_RALINK 2
|
|
#define PID_RDC_AIRGO 3
|
|
#define PID_RDC_RALINK 5 /* White Lable */
|
|
|
|
/* Gemtek */
|
|
typedef struct
|
|
{
|
|
u8 magic[4]; /* ASICII: GMTK */
|
|
u32 checksum; /* CRC32 */
|
|
u32 version; /* x.x.x.x */
|
|
u32 kernelsz; /* The size of the kernel image */
|
|
u32 imagesz; /* The length of this image file ( kernel + romfs + this header) */
|
|
u32 pid; /* Product ID */
|
|
u32 fastcksum; /* Partial CRC32 on (First(256), medium(256), last(512)) */
|
|
u32 reserved;
|
|
}gt_imghdr_t;
|
|
|
|
#endif
|