blob: cd7a1ae48db58239aa98c2709518725e41c545f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* boot_images.h - Collection of the different boot images
* Johan Adolfsson Axis Communications AB
* $Id: boot_images.h,v 1.2 2002/07/01 14:37:51 pkj Exp $
*/
#define INTERNAL_SER "INTERNAL_SER"
#define INTERNAL_NW "INTERNAL_NW"
#define INTERNAL_NW_NOLEDS "INTERNAL_NW_NOLEDS"
#define INTERNAL_SER_NOLEDS "INTERNAL_SER_NOLEDS"
typedef struct boot_image_info_type
{
const char *name;
const char *ptr;
unsigned long len;
const char *info;
} boot_image_info_type;
extern struct boot_image_info_type boot_image_info[];
|