summaryrefslogtreecommitdiffstats
path: root/uClinux-2.4.20-uc1/include/asm-armnommu/arch-W90N745/firmware.h
blob: fcfb8157b2bac2968f50a1bba5ba5f26be923e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef struct FirmWare{
	int flag;
	int length_bin;
	int length_img;
}FirmWare;

#define BINZIP	0x00000001
#define IMGZIP	0x00000002

#define ISBINZIP(flag)	 ((flag)&0x00000001)
#define ISBINUNZIP(flag) !((flag)&0x00000001)
#define ISIMGZIP(flag)	 ((flag)&0x00000002)
#define ISIMGUNZIP(flag) !((flag)&0x00000002)