add initial support for the crisarchitecture used on foxboards to openwrt
[openwrt.git] / target / linux / etrax-2.6 / image / e100boot / src / sbl / win32 / boot_images.c
1 /* boot_images.c - Collection of the different boot images
2  * Johan Adolfsson Axis Communications AB 
3  *  $Id: boot_images.c,v 1.1 2004/01/26 10:52:40 mikaelp Exp $ 
4  */
5
6 #include <stdio.h>
7 #include "boot_images.h"
8
9 /* We include the C files here to the size etc. easy */
10 #include "net_ima.c"
11 #include "ser_ima.c"
12 #include "net_noleds_ima.c"
13 #include "ser_noleds_ima.c"
14
15 struct boot_image_info_type boot_image_info[] = 
16 {
17   { INTERNAL_NW,  net_ima, sizeof net_ima, "Network boot (default)"},
18   { INTERNAL_SER, ser_ima, sizeof ser_ima, "Serial boot"},
19   { INTERNAL_SER_NOLEDS, ser_noleds_ima, sizeof ser_noleds_ima, "Serial boot, no leds"},
20   { INTERNAL_NW_NOLEDS,  net_noleds_ima, sizeof net_noleds_ima, "Network boot, no leds"},
21
22   { "DBGNONE", net_ima, sizeof net_ima, "Obsolete (use INTERNAL_NW instead)" },
23   { "DBG0",    net_ima, sizeof net_ima, "Obsolete (use INTERNAL_NW instead)" },
24   { "DBG1",    net_ima, sizeof net_ima, "Obsolete (use INTERNAL_NW instead)" },
25   { "DBG2",    net_ima, sizeof net_ima, "Obsolete (use INTERNAL_NW instead)" },
26   { "DBG3",    net_ima, sizeof net_ima, "Obsolete (use INTERNAL_NW instead)" },
27
28   { "DBGNONE_NOLEDS", net_noleds_ima, sizeof net_noleds_ima, "Obsolete (use INTERNAL_NW_NOLEDS instead)" },
29   { "DBG0_NOLEDS",    net_noleds_ima, sizeof net_noleds_ima, "Obsolete (use INTERNAL_NW_NOLEDS instead)" },
30   { "DBG1_NOLEDS",    net_noleds_ima, sizeof net_noleds_ima, "Obsolete (use INTERNAL_NW_NOLEDS instead)" },
31   { "DBG2_NOLEDS",    net_noleds_ima, sizeof net_noleds_ima, "Obsolete (use INTERNAL_NW_NOLEDS instead)" },
32   { "DBG3_NOLEDS",    net_noleds_ima, sizeof net_noleds_ima, "Obsolete (use INTERNAL_NW_NOLEDS instead)" },
33
34   { NULL, NULL, 0, NULL } /* End of array */
35 };