diff mbox

[U-Boot] ARMV7: OMAP3: Fix build failure for igep0030 machine

Message ID 1291027167-5091-1-git-send-email-eballetbo@iseebcn.com
State Accepted
Commit 84c611d33bebd4c37ee0dd8cd1e9468c75a9798b
Headers show

Commit Message

Enric Balletbo i Serra Nov. 29, 2010, 10:39 a.m. UTC
Seems that if CONFIG_CMD_NET is undefined we should also
undefine CONFIG_CMD_NFS, otherwise build fails with various
undefined reference like:

  net/libnet.o: In function `rpc_req':
  u-boot/net/nfs.c:193: undefined reference to `NetEthHdrSize'
  u-boot/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
  u-boot/net/nfs.c:203: undefined reference to `NetTxPacket'
  u-boot/net/nfs.c:203: undefined reference to `NetServerEther'

This patch adds the undef CONFIG_CMD_NFS in configuration file.

Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
---
 include/configs/igep0030.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

Comments

Sandeep Paulraj Nov. 29, 2010, 9:31 p.m. UTC | #1
> 
> Seems that if CONFIG_CMD_NET is undefined we should also
> undefine CONFIG_CMD_NFS, otherwise build fails with various
> undefined reference like:
> 
>   net/libnet.o: In function `rpc_req':
>   u-boot/net/nfs.c:193: undefined reference to `NetEthHdrSize'
>   u-boot/net/nfs.c:202: undefined reference to `NetSendUDPPacket'
>   u-boot/net/nfs.c:203: undefined reference to `NetTxPacket'
>   u-boot/net/nfs.c:203: undefined reference to `NetServerEther'
> 
> This patch adds the undef CONFIG_CMD_NFS in configuration file.
> 
> Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
> ---
>  include/configs/igep0030.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/include/configs/igep0030.h b/include/configs/igep0030.h
> index d61793c..1325bfa 100644
> --- a/include/configs/igep0030.h
> +++ b/include/configs/igep0030.h
> @@ -110,6 +110,7 @@
>  #define CONFIG_MTD_DEVICE
> 
>  #undef CONFIG_CMD_NET		/* bootp, tftpboot, rarpboot	*/
> +#undef CONFIG_CMD_NFS		/* nfs				*/
>  #undef CONFIG_CMD_FLASH		/* flinfo, erase, protect	*/
>  #undef CONFIG_CMD_IMLS		/* List all found images	*/
> 

Pushed to u-boot-ti
diff mbox

Patch

diff --git a/include/configs/igep0030.h b/include/configs/igep0030.h
index d61793c..1325bfa 100644
--- a/include/configs/igep0030.h
+++ b/include/configs/igep0030.h
@@ -110,6 +110,7 @@ 
 #define CONFIG_MTD_DEVICE
 
 #undef CONFIG_CMD_NET		/* bootp, tftpboot, rarpboot	*/
+#undef CONFIG_CMD_NFS		/* nfs				*/
 #undef CONFIG_CMD_FLASH		/* flinfo, erase, protect	*/
 #undef CONFIG_CMD_IMLS		/* List all found images	*/