diff options
| author | Tom Rini <trini@ti.com> | 2013-08-20 08:53:54 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-08-28 11:44:59 -0400 | 
| commit | 457bb50560c983fc69090dad1fb16b128e88a520 (patch) | |
| tree | f3cfac87e8cbb688afe53c9723a527a789a50593 /include | |
| parent | 318aeb46493bb7f8b139aba6e084cb4bc2f70533 (diff) | |
| download | olio-uboot-2014.01-457bb50560c983fc69090dad1fb16b128e88a520.tar.xz olio-uboot-2014.01-457bb50560c983fc69090dad1fb16b128e88a520.zip | |
dra7xx_evm: Re-order and comment the networking related config options
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/dra7xx_evm.h | 18 | 
1 files changed, 8 insertions, 10 deletions
| diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index 58786ffa9..4fbe768cb 100644 --- a/include/configs/dra7xx_evm.h +++ b/include/configs/dra7xx_evm.h @@ -26,21 +26,19 @@  #include <configs/omap5_common.h>  /* CPSW Ethernet */ -#define CONFIG_CMD_NET +#define CONFIG_CMD_NET			/* 'bootp' and 'tftp' */  #define CONFIG_CMD_DHCP -#define CONFIG_CMD_PING -#define CONFIG_CMD_MII -#define CONFIG_DRIVER_TI_CPSW -#define CONFIG_MII -#define CONFIG_BOOTP_DEFAULT -#define CONFIG_BOOTP_DNS +#define CONFIG_BOOTP_DNS		/* Configurable parts of CMD_DHCP */  #define CONFIG_BOOTP_DNS2  #define CONFIG_BOOTP_SEND_HOSTNAME  #define CONFIG_BOOTP_GATEWAY  #define CONFIG_BOOTP_SUBNETMASK -#define CONFIG_NET_RETRY_COUNT         10 -#define CONFIG_NET_MULTI -#define CONFIG_PHY_GIGE +#define CONFIG_NET_RETRY_COUNT		10 +#define CONFIG_CMD_PING +#define CONFIG_CMD_MII +#define CONFIG_DRIVER_TI_CPSW		/* Driver for IP block */ +#define CONFIG_MII			/* Required in net/eth.c */ +#define CONFIG_PHY_GIGE			/* per-board part of CPSW */  #define CONFIG_PHYLIB  #define CONFIG_PHY_ADDR			2 |