mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-18 00:12:29 +02:00
3a0a80e129
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17659 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
307 B
C
15 lines
307 B
C
#ifndef __FIS_H
|
|
#define __FIS_H
|
|
|
|
struct fis_part {
|
|
unsigned char name[16];
|
|
uint32_t offset;
|
|
uint32_t loadaddr;
|
|
uint32_t size;
|
|
};
|
|
|
|
int fis_validate(struct fis_part *old, int n_old, struct fis_part *new, int n_new);
|
|
int fis_remap(struct fis_part *old, int n_old, struct fis_part *new, int n_new);
|
|
|
|
#endif
|