diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-02 10:01:27 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-05 22:22:16 +0200 |
commit | e2a53458a7ab375233048e922c4adf494866a78f (patch) | |
tree | 0d703e3070ba43394fae714629c09c998bf5b80d /doc | |
parent | d90f0c107bdb9766aeaf11181b97f5d7fde3efda (diff) | |
download | u-boot-imx-e2a53458a7ab375233048e922c4adf494866a78f.zip u-boot-imx-e2a53458a7ab375233048e922c4adf494866a78f.tar.gz u-boot-imx-e2a53458a7ab375233048e922c4adf494866a78f.tar.bz2 |
net: drop !NET_MULTI code
This is long over due. All but two net drivers have been converted, but
those have now been dropped.
The only thing left to do is actually delete all references to NET_MULTI
and code that is compiled when that is not defined. So here we scrub the
core code.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.m53017evb | 1 | ||||
-rw-r--r-- | doc/README.m5373evb | 1 | ||||
-rw-r--r-- | doc/README.m54455evb | 1 | ||||
-rw-r--r-- | doc/README.m5475evb | 1 | ||||
-rw-r--r-- | doc/README.usb | 1 | ||||
-rw-r--r-- | doc/feature-removal-schedule.txt | 19 |
6 files changed, 0 insertions, 24 deletions
diff --git a/doc/README.m53017evb b/doc/README.m53017evb index 42798c2..64a3d42 100644 --- a/doc/README.m53017evb +++ b/doc/README.m53017evb @@ -78,7 +78,6 @@ RTC_DEBUG -- define to show RTC debug message CONFIG_CMD_DATE -- enable to use date feature in u-boot CONFIG_MCFFEC -- define to use common CF FEC driver -CONFIG_NET_MULTI -- define to use multi FEC in u-boot CONFIG_MII -- enable to use MII driver CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery diff --git a/doc/README.m5373evb b/doc/README.m5373evb index 6216671..419d4d6 100644 --- a/doc/README.m5373evb +++ b/doc/README.m5373evb @@ -77,7 +77,6 @@ RTC_DEBUG -- define to show RTC debug message CONFIG_CMD_DATE -- enable to use date feature in u-boot CONFIG_MCFFEC -- define to use common CF FEC driver -CONFIG_NET_MULTI -- define to use multi FEC in u-boot CONFIG_MII -- enable to use MII driver CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery diff --git a/doc/README.m54455evb b/doc/README.m54455evb index 918a746..2bc6ce4 100644 --- a/doc/README.m54455evb +++ b/doc/README.m54455evb @@ -81,7 +81,6 @@ RTC_DEBUG -- define to show RTC debug message CONFIG_CMD_DATE -- enable to use date feature in u-boot CONFIG_MCFFEC -- define to use common CF FEC driver -CONFIG_NET_MULTI -- define to use multi FEC in u-boot CONFIG_MII -- enable to use MII driver CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery diff --git a/doc/README.m5475evb b/doc/README.m5475evb index f5658ea..d3aec20 100644 --- a/doc/README.m5475evb +++ b/doc/README.m5475evb @@ -78,7 +78,6 @@ CONFIG_SYS_UART_PORT -- define UART port number, start with 0, 1 and 2 CONFIG_BAUDRATE -- define UART baudrate CONFIG_FSLDMAFEC -- define to use common dma FEC driver -CONFIG_NET_MULTI -- define to use multi FEC in u-boot CONFIG_MII -- enable to use MII driver CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery diff --git a/doc/README.usb b/doc/README.usb index 0771c71..c4df9cd 100644 --- a/doc/README.usb +++ b/doc/README.usb @@ -151,7 +151,6 @@ As with built-in networking, you will also want to enable some network commands, for example: #define CONFIG_CMD_NET -#define CONFIG_NET_MULTI #define CONFIG_CMD_PING #define CONFIG_CMD_DHCP diff --git a/doc/feature-removal-schedule.txt b/doc/feature-removal-schedule.txt index 13d7d9a..00d87e4 100644 --- a/doc/feature-removal-schedule.txt +++ b/doc/feature-removal-schedule.txt @@ -23,25 +23,6 @@ Who: Mike Frysinger <vapier@gentoo.org> --------------------------- -What: CONFIG_NET_MULTI option -When: Release 2009-11 - -Why: U-boot currently implements two network driver APIs. New drivers with - the older-style implementation have not been accepted for a while, and - this parallel system makes the code confusing and hard to augment. - - All existing in-tree boards will be converted to use CONFIG_NET_MULTI - over the span of two releases (2009-07 and 2009-09). - In the 2009-11 release, all code that is compiled when CONFIG_NET_MULTI - is not set will be removed, and all references to CONFIG_NET_MULTI - will be removed, effectively making it the only API. This should - provide ample time for out-of-tree users to adjust, and for tools on - all architectures to be made to work with weak functions. - -Who: Ben Warren <biggerbadderben@gmail.com> - ---------------------------- - What: GPL cleanup When: August 2009 Why: Over time, a couple of files have sneaked in into the U-Boot |