cmd_bootm.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. * Boot support
  25. */
  26. #ifndef _CMD_BOOTM_H
  27. #define _CMD_BOOTM_H
  28. int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  29. #define CMD_TBL_BOOTM MK_CMD_TBL_ENTRY( \
  30. "bootm", 5, CFG_MAXARGS, 1, do_bootm, \
  31. "bootm - boot application image from memory\n", \
  32. "[addr [arg ...]]\n - boot application image stored in memory\n" \
  33. " passing arguments 'arg ...'; when booting a Linux kernel,\n" \
  34. " 'arg' can be the address of an initrd image\n" \
  35. ),
  36. #if (CONFIG_COMMANDS & CFG_CMD_BOOTD)
  37. int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  38. #define CMD_TBL_BOOTD MK_CMD_TBL_ENTRY( \
  39. "bootd", 4, 1, 1, do_bootd, \
  40. "bootd - boot default, i.e., run 'bootcmd'\n", \
  41. NULL \
  42. ),
  43. #else
  44. #define CMD_TBL_BOOTD
  45. #endif
  46. #if (CONFIG_COMMANDS & CFG_CMD_IMI)
  47. int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  48. #define CMD_TBL_IMINFO MK_CMD_TBL_ENTRY( \
  49. "iminfo", 3, CFG_MAXARGS, 1, do_iminfo, \
  50. "iminfo - print header information for application image\n", \
  51. "addr [addr ...]\n" \
  52. " - print header information for application image starting at\n" \
  53. " address 'addr' in memory; this includes verification of the\n" \
  54. " image contents (magic number, header and payload checksums)\n" \
  55. ),
  56. #else
  57. #define CMD_TBL_IMINFO
  58. #endif
  59. #endif /* _CMD_BOOTM_H */