1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 08:33:13 +03:00
openwrt-xburst/target/linux/rdc-2.6/files/drivers/mtd/maps/imghdr.h
florian 56a10a49fd Split up drivers and specific files, update flash map driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6765 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-03-30 21:56:07 +00:00

26 lines
638 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
{
UINT8 magic[4]; /* ASICII: GMTK */
UINT32 checksum; /* CRC32 */
UINT32 version; /* x.x.x.x */
UINT32 kernelsz; /* The size of the kernel image */
UINT32 imagesz; /* The length of this image file ( kernel + romfs + this header) */
UINT32 pid; /* Product ID */
UINT32 fastcksum; /* Partial CRC32 on (First(256), medium(256), last(512)) */
UINT32 reserved;
}gt_imghdr_t;
#endif