diff options
author | wdenk <wdenk> | 2003-10-09 20:09:04 (GMT) |
---|---|---|
committer | wdenk <wdenk> | 2003-10-09 20:09:04 (GMT) |
commit | 5da627a424b3ad2d38a81886ba4a18e5123a6788 (patch) | |
tree | 13d274effe8b9c740a07f4cb47989f3215c20bb4 /net | |
parent | 15647dc7fd86bbaeb68740929ecb9f8473c7ceae (diff) | |
download | u-boot-5da627a424b3ad2d38a81886ba4a18e5123a6788.tar.xz |
* Patch by Steven Scholz, 10 Oct 2003
- Add support for Altera FPGA ACEX1K
* Patches by Thomas Lange, 09 Oct 2003:
- Endian swap ATA identity for all big endian CPUs, not just PPC
- MIPS only: New option CONFIG_MEMSIZE_IN_BYTES for passing memsize
args to linux
- add support for dbau1x00 board (MIPS32)
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -45,6 +45,7 @@ extern int ppc_4xx_eth_initialize(bd_t *); extern int plb2800_eth_initialize(bd_t*); extern int mpc5xxx_fec_initialize(bd_t*); extern int skge_initialize(bd_t*); +extern int au1x00_enet_initialize(bd_t*); static struct eth_device *eth_devices, *eth_current; @@ -146,6 +147,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_SK98) skge_initialize(bis); #endif +#if defined(CONFIG_AU1X00) + au1x00_enet_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |