3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
31 #if (CONFIG_COMMANDS & CFG_CMD_NET)
34 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
36 static int netboot_common (proto_t, cmd_tbl_t *, int , char *[]);
38 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
40 return netboot_common (BOOTP, cmdtp, argc, argv);
44 bootp, 3, 1, do_bootp,
45 "bootp\t- boot image via network using BootP/TFTP protocol\n",
46 "[loadAddress] [bootfilename]\n"
49 int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
51 return netboot_common (TFTP, cmdtp, argc, argv);
55 tftpboot, 3, 1, do_tftpb,
56 "tftpboot- boot image via network using TFTP protocol\n",
57 "[loadAddress] [bootfilename]\n"
60 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
62 return netboot_common (RARP, cmdtp, argc, argv);
66 rarpboot, 3, 1, do_rarpb,
67 "rarpboot- boot image via network using RARP/TFTP protocol\n",
68 "[loadAddress] [bootfilename]\n"
71 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
72 int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
74 return netboot_common(DHCP, cmdtp, argc, argv);
79 "dhcp\t- invoke DHCP client to obtain IP/boot params\n",
82 #endif /* CFG_CMD_DHCP */
84 #if (CONFIG_COMMANDS & CFG_CMD_NFS)
85 int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
87 return netboot_common(NFS, cmdtp, argc, argv);
92 "nfs\t- boot image via network using NFS protocol\n",
93 "[loadAddress] [host ip addr:bootfilename]\n"
95 #endif /* CFG_CMD_NFS */
97 static void netboot_update_env (void)
101 if (NetOurGatewayIP) {
102 ip_to_string (NetOurGatewayIP, tmp);
103 setenv ("gatewayip", tmp);
106 if (NetOurSubnetMask) {
107 ip_to_string (NetOurSubnetMask, tmp);
108 setenv ("netmask", tmp);
111 if (NetOurHostName[0])
112 setenv ("hostname", NetOurHostName);
114 if (NetOurRootPath[0])
115 setenv ("rootpath", NetOurRootPath);
118 ip_to_string (NetOurIP, tmp);
119 setenv ("ipaddr", tmp);
123 ip_to_string (NetServerIP, tmp);
124 setenv ("serverip", tmp);
128 ip_to_string (NetOurDNSIP, tmp);
129 setenv ("dnsip", tmp);
131 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS2)
133 ip_to_string (NetOurDNS2IP, tmp);
134 setenv ("dnsip2", tmp);
137 if (NetOurNISDomain[0])
138 setenv ("domain", NetOurNISDomain);
140 #if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_TIMEOFFSET)
142 sprintf (tmp, "%d", NetTimeOffset);
143 setenv ("timeoffset", tmp);
146 #if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NTPSERVER)
147 if (NetNtpServerIP) {
148 ip_to_string (NetNtpServerIP, tmp);
149 setenv ("ntpserverip", tmp);
155 netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
161 /* pre-set load_addr */
162 if ((s = getenv("loadaddr")) != NULL) {
163 load_addr = simple_strtoul(s, NULL, 16);
170 case 2: /* only one arg - accept two forms:
171 * just load address, or just boot file name.
172 * The latter form must be written "filename" here.
174 if (argv[1][0] == '"') { /* just boot filename */
175 copy_filename (BootFile, argv[1], sizeof(BootFile));
176 } else { /* load address */
177 load_addr = simple_strtoul(argv[1], NULL, 16);
181 case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
182 copy_filename (BootFile, argv[2], sizeof(BootFile));
186 default: printf ("Usage:\n%s\n", cmdtp->usage);
190 if ((size = NetLoop(proto)) < 0)
193 /* NetLoop ok, update environment */
194 netboot_update_env();
196 /* done if no file was loaded (no errors though) */
201 flush_cache(load_addr, size);
203 /* Loading ok, check if we should attempt an auto-start */
204 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
206 local_args[0] = argv[0];
207 local_args[1] = NULL;
209 printf ("Automatic boot of image at addr 0x%08lX ...\n",
211 rcode = do_bootm (cmdtp, 0, 1, local_args);
214 #ifdef CONFIG_AUTOSCRIPT
215 if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
216 printf("Running autoscript at addr 0x%08lX ...\n", load_addr);
217 rcode = autoscript (load_addr);
223 #if (CONFIG_COMMANDS & CFG_CMD_PING)
224 int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
229 NetPingIP = string_to_ip(argv[1]);
230 if (NetPingIP == 0) {
231 printf ("Usage:\n%s\n", cmdtp->usage);
235 if (NetLoop(PING) < 0) {
236 printf("ping failed; host %s is not alive\n", argv[1]);
240 printf("host %s is alive\n", argv[1]);
247 "ping\t- send ICMP ECHO_REQUEST to network host\n",
250 #endif /* CFG_CMD_PING */
252 #if (CONFIG_COMMANDS & CFG_CMD_CDP)
254 static void cdp_update_env(void)
258 if (CDPApplianceVLAN != htons(-1)) {
259 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
260 VLAN_to_string(CDPApplianceVLAN, tmp);
262 NetOurVLAN = CDPApplianceVLAN;
265 if (CDPNativeVLAN != htons(-1)) {
266 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
267 VLAN_to_string(CDPNativeVLAN, tmp);
268 setenv("nvlan", tmp);
269 NetOurNativeVLAN = CDPNativeVLAN;
274 int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
280 printf("cdp failed; perhaps not a CISCO switch?\n");
291 "cdp\t- Perform CDP network configuration\n",
293 #endif /* CFG_CMD_CDP */
295 #if (CONFIG_COMMANDS & CFG_CMD_SNTP)
296 int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
301 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
302 if (NetNtpServerIP == 0) {
303 printf ("ntpserverip not set\n");
307 NetNtpServerIP = string_to_ip(argv[1]);
308 if (NetNtpServerIP == 0) {
309 printf ("Bad NTP server IP address\n");
314 toff = getenv ("timeoffset");
315 if (toff == NULL) NetTimeOffset = 0;
316 else NetTimeOffset = simple_strtol (toff, NULL, 10);
318 if (NetLoop(SNTP) < 0) {
319 printf("SNTP failed: host %s not responding\n", argv[1]);
328 "sntp\t- synchronize RTC via network\n",
331 #endif /* CFG_CMD_SNTP */
333 #endif /* CFG_CMD_NET */