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 $
7 #include "boot_images.h"
9 /* We include the C files here to the size etc. easy */
12 #include "net_noleds_ima.c"
13 #include "ser_noleds_ima.c"
15 struct boot_image_info_type boot_image_info
[] =
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"},
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)" },
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)" },
34 { NULL
, NULL
, 0, NULL
} /* End of array */