From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Linz Date: Wed, 10 Mar 2004 18:45:20 +0100 Subject: [U-Boot-Users] [PATCH] net/bootp.c more conform to CFG_CMD_NFS Message-ID: <0403101845200A.12732@pcj86> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de - avoid unresolved symbol of NfsStart() in net/bootp.c for each target without NFS download support Best regards, Stephan -------------- next part -------------- diff -purN -x CVS u-boot-20040309cvs/net/bootp.c u-boot-20040309cvs-bootp_nfs_fix/net/bootp.c --- u-boot-20040309cvs/net/bootp.c 2004-02-27 08:20:56.000000000 +0000 +++ u-boot-20040309cvs-bootp_nfs_fix/net/bootp.c 2004-03-09 19:25:09.000000000 +0000 @@ -339,12 +339,14 @@ BootpHandler(uchar * pkt, unsigned dest, */ NetState = NETLOOP_SUCCESS; return; +#if (CONFIG_COMMANDS & CFG_CMD_NFS) } else if (strcmp(s, "NFS") == 0) { /* * Use NFS to load the bootfile. */ NfsStart(); return; +#endif } } @@ -897,12 +899,14 @@ DhcpHandler(uchar * pkt, unsigned dest, */ NetState = NETLOOP_SUCCESS; return; +#if (CONFIG_COMMANDS & CFG_CMD_NFS) } else if (strcmp(s, "NFS") == 0) { /* * Use NFS to load the bootfile. */ NfsStart(); return; +#endif } } TftpStart(); -------------- next part -------------- * Patch by Stephan Linz, 09 Mar 2004 - avoid unresolved symbol of NfsStart() in net/bootp.c for each target without NFS download support