]> git.sur5r.net Git - u-boot/blobdiff - common/cmd_net.c
mpc8323erdb: Improve the system performance
[u-boot] / common / cmd_net.c
index 0715fbc203ce06fc8fa2c61af5db240ec9de50b3..dbf6b861b1bdd9b6b0c62ce637e4869eabb4fbf9 100644 (file)
@@ -28,8 +28,6 @@
 #include <command.h>
 #include <net.h>
 
-#if defined(CONFIG_CMD_NET)
-
 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
 
 static int netboot_common (proto_t, cmd_tbl_t *, int , char *[]);
@@ -53,7 +51,7 @@ int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 U_BOOT_CMD(
        tftpboot,       3,      1,      do_tftpb,
        "tftpboot- boot image via network using TFTP protocol\n",
-       "[loadAddress] [bootfilename]\n"
+       "[loadAddress] [[hostIPaddr:]bootfilename]\n"
 );
 
 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
@@ -89,7 +87,7 @@ int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 U_BOOT_CMD(
        nfs,    3,      1,      do_nfs,
        "nfs\t- boot image via network using NFS protocol\n",
-       "[loadAddress] [host ip addr:bootfilename]\n"
+       "[loadAddress] [[hostIPaddr:]bootfilename]\n"
 );
 #endif
 
@@ -343,5 +341,3 @@ U_BOOT_CMD(
        "[NTP server IP]\n"
 );
 #endif
-
-#endif