add initial support for the crisarchitecture used on foxboards to openwrt
[openwrt/openwrt.git] / target / linux / etrax-2.6 / image / e100boot / src / sbl / boot_images.h
1 /* boot_images.h - Collection of the different boot images
2 * Johan Adolfsson Axis Communications AB
3 * $Id: boot_images.h,v 1.2 2002/07/01 14:37:51 pkj Exp $
4 */
5
6 #define INTERNAL_SER "INTERNAL_SER"
7 #define INTERNAL_NW "INTERNAL_NW"
8 #define INTERNAL_NW_NOLEDS "INTERNAL_NW_NOLEDS"
9 #define INTERNAL_SER_NOLEDS "INTERNAL_SER_NOLEDS"
10
11 typedef struct boot_image_info_type
12 {
13 const char *name;
14 const char *ptr;
15 unsigned long len;
16 const char *info;
17 } boot_image_info_type;
18
19 extern struct boot_image_info_type boot_image_info[];
20