wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Boot support |
| 26 | */ |
| 27 | #ifndef _CMD_BOOTM_H |
| 28 | #define _CMD_BOOTM_H |
| 29 | int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
| 30 | |
| 31 | #define CMD_TBL_BOOTM MK_CMD_TBL_ENTRY( \ |
| 32 | "bootm", 5, CFG_MAXARGS, 1, do_bootm, \ |
| 33 | "bootm - boot application image from memory\n", \ |
| 34 | "[addr [arg ...]]\n - boot application image stored in memory\n" \ |
| 35 | " passing arguments 'arg ...'; when booting a Linux kernel,\n" \ |
| 36 | " 'arg' can be the address of an initrd image\n" \ |
| 37 | ), |
| 38 | |
| 39 | #if (CONFIG_COMMANDS & CFG_CMD_BOOTD) |
| 40 | int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
| 41 | |
| 42 | #define CMD_TBL_BOOTD MK_CMD_TBL_ENTRY( \ |
| 43 | "bootd", 4, 1, 1, do_bootd, \ |
| 44 | "bootd - boot default, i.e., run 'bootcmd'\n", \ |
| 45 | NULL \ |
| 46 | ), |
| 47 | #else |
| 48 | #define CMD_TBL_BOOTD |
| 49 | #endif |
| 50 | |
| 51 | #if (CONFIG_COMMANDS & CFG_CMD_IMI) |
| 52 | int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
| 53 | #define CMD_TBL_IMINFO MK_CMD_TBL_ENTRY( \ |
| 54 | "iminfo", 3, CFG_MAXARGS, 1, do_iminfo, \ |
| 55 | "iminfo - print header information for application image\n", \ |
| 56 | "addr [addr ...]\n" \ |
| 57 | " - print header information for application image starting at\n" \ |
| 58 | " address 'addr' in memory; this includes verification of the\n" \ |
| 59 | " image contents (magic number, header and payload checksums)\n" \ |
| 60 | ), |
| 61 | #else |
| 62 | #define CMD_TBL_IMINFO |
| 63 | #endif |
| 64 | |
| 65 | #endif /* _CMD_BOOTM_H */ |