cmd_net.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. #include <common.h>
  27. #include <command.h>
  28. #include <cmd_autoscript.h>
  29. #include <net.h>
  30. #if (CONFIG_COMMANDS & CFG_CMD_NET)
  31. extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
  32. static int netboot_common (int, cmd_tbl_t *, int , char *[]);
  33. int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  34. {
  35. return netboot_common (BOOTP, cmdtp, argc, argv);
  36. }
  37. cmd_tbl_t U_BOOT_CMD(BOOTP) = MK_CMD_ENTRY(
  38. "bootp", 3, 1, do_bootp,
  39. "bootp - boot image via network using BootP/TFTP protocol\n",
  40. "[loadAddress] [bootfilename]\n"
  41. );
  42. int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  43. {
  44. return netboot_common (TFTP, cmdtp, argc, argv);
  45. }
  46. cmd_tbl_t U_BOOT_CMD(TFTPB) = MK_CMD_ENTRY(
  47. "tftpboot", 3, 1, do_tftpb,
  48. "tftpboot- boot image via network using TFTP protocol\n",
  49. "[loadAddress] [bootfilename]\n"
  50. );
  51. int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  52. {
  53. return netboot_common (RARP, cmdtp, argc, argv);
  54. }
  55. cmd_tbl_t U_BOOT_CMD(RARPB) = MK_CMD_ENTRY(
  56. "rarpboot", 3, 1, do_rarpb,
  57. "rarpboot- boot image via network using RARP/TFTP protocol\n",
  58. "[loadAddress] [bootfilename]\n"
  59. );
  60. #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
  61. int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  62. {
  63. return netboot_common(DHCP, cmdtp, argc, argv);
  64. }
  65. cmd_tbl_t U_BOOT_CMD(DHCP) = MK_CMD_ENTRY(
  66. "dhcp", 3, 1, do_dhcp,
  67. "dhcp - invoke DHCP client to obtain IP/boot params\n",
  68. "\n"
  69. );
  70. #endif /* CFG_CMD_DHCP */
  71. static void netboot_update_env(void)
  72. {
  73. char tmp[16] ;
  74. if (NetOurGatewayIP) {
  75. ip_to_string (NetOurGatewayIP, tmp);
  76. setenv("gatewayip", tmp);
  77. }
  78. if (NetOurSubnetMask) {
  79. ip_to_string (NetOurSubnetMask, tmp);
  80. setenv("netmask", tmp);
  81. }
  82. if (NetOurHostName[0])
  83. setenv("hostname", NetOurHostName);
  84. if (NetOurRootPath[0])
  85. setenv("rootpath", NetOurRootPath);
  86. if (NetOurIP) {
  87. ip_to_string (NetOurIP, tmp);
  88. setenv("ipaddr", tmp);
  89. }
  90. if (NetServerIP) {
  91. ip_to_string (NetServerIP, tmp);
  92. setenv("serverip", tmp);
  93. }
  94. if (NetOurDNSIP) {
  95. ip_to_string (NetOurDNSIP, tmp);
  96. setenv("dnsip", tmp);
  97. }
  98. if (NetOurNISDomain[0])
  99. setenv("domain", NetOurNISDomain);
  100. }
  101. static int
  102. netboot_common (int proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
  103. {
  104. char *s;
  105. int rcode = 0;
  106. int size;
  107. /* pre-set load_addr */
  108. if ((s = getenv("loadaddr")) != NULL) {
  109. load_addr = simple_strtoul(s, NULL, 16);
  110. }
  111. switch (argc) {
  112. case 1:
  113. break;
  114. case 2: /* only one arg - accept two forms:
  115. * just load address, or just boot file name.
  116. * The latter form must be written "filename" here.
  117. */
  118. if (argv[1][0] == '"') { /* just boot filename */
  119. copy_filename (BootFile, argv[1], sizeof(BootFile));
  120. } else { /* load address */
  121. load_addr = simple_strtoul(argv[1], NULL, 16);
  122. }
  123. break;
  124. case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
  125. copy_filename (BootFile, argv[2], sizeof(BootFile));
  126. break;
  127. default: printf ("Usage:\n%s\n", cmdtp->usage);
  128. return 1;
  129. }
  130. if ((size = NetLoop(proto)) < 0)
  131. return 1;
  132. /* NetLoop ok, update environment */
  133. netboot_update_env();
  134. /* done if no file was loaded (no errors though) */
  135. if (size == 0)
  136. return 0;
  137. /* flush cache */
  138. flush_cache(load_addr, size);
  139. /* Loading ok, check if we should attempt an auto-start */
  140. if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
  141. char *local_args[2];
  142. local_args[0] = argv[0];
  143. local_args[1] = NULL;
  144. printf ("Automatic boot of image at addr 0x%08lX ...\n",
  145. load_addr);
  146. rcode = do_bootm (cmdtp, 0, 1, local_args);
  147. }
  148. #ifdef CONFIG_AUTOSCRIPT
  149. if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
  150. printf("Running autoscript at addr 0x%08lX ...\n", load_addr);
  151. rcode = autoscript (load_addr);
  152. }
  153. #endif
  154. return rcode;
  155. }
  156. #if (CONFIG_COMMANDS & CFG_CMD_PING)
  157. int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  158. {
  159. if (argc < 2)
  160. return -1;
  161. NetPingIP = string_to_ip(argv[1]);
  162. if (NetPingIP == 0) {
  163. printf ("Usage:\n%s\n", cmdtp->usage);
  164. return -1;
  165. }
  166. if (NetLoop(PING) < 0) {
  167. printf("ping failed; host %s is not alive\n", argv[1]);
  168. return 1;
  169. }
  170. printf("host %s is alive\n", argv[1]);
  171. return 0;
  172. }
  173. #endif /* CFG_CMD_PING */
  174. #endif /* CFG_CMD_NET */