summaryrefslogtreecommitdiff
path: root/include/cmd_elf.h
blob: 64c52bc63a67074d5bb5b37cc490f84d584c027b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Elf Load/Boot Functions
 */
#ifndef	_CMD_ELF_H
#define _CMD_ELF_H

#if (CONFIG_COMMANDS & CFG_CMD_ELF)

#define CMD_TBL_BOOTELF MK_CMD_TBL_ENTRY(                               \
        "bootelf",      7,      2,      0,      do_bootelf,             \
        "bootelf - Boot from an ELF image in memory\n",                 \
        " [address] - load address of ELF image.\n"                     \
        ),

#define CMD_TBL_BOOTVX  MK_CMD_TBL_ENTRY(                               \
        "bootvx",       6,      2,      0,      do_bootvx,              \
        "bootvx  - Boot vxWorks from an ELF image\n",                   \
        " [address] - load address of vxWorks ELF image.\n"             \
        ),

extern int do_bootelf (cmd_tbl_t *, int, int, char *[]);
extern int do_bootvx (cmd_tbl_t *, int, int, char *[]);

/* Supporting routines */
extern int           valid_elf_image (unsigned long);
extern unsigned long load_elf_image (unsigned long);

#else	/* ! CFG_CMD_ELF */

#define CMD_TBL_BOOTELF
#define CMD_TBL_BOOTVX

#endif	/* CFG_CMD_ELF */
#endif	/* _CMD_ELF_H */