]>
Commit | Line | Data |
---|---|---|
c609719b | 1 | /* |
57cac1fa | 2 | * (C) Copyright 2002-2006 |
c609719b WD |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
4 | * | |
5 | * (C) Copyright 2002 | |
6 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
7 | * Marius Groeger <[email protected]> | |
8 | * | |
9 | * See file CREDITS for list of people who contributed to this | |
10 | * project. | |
11 | * | |
12 | * This program is free software; you can redistribute it and/or | |
13 | * modify it under the terms of the GNU General Public License as | |
14 | * published by the Free Software Foundation; either version 2 of | |
15 | * the License, or (at your option) any later version. | |
16 | * | |
17 | * This program is distributed in the hope that it will be useful, | |
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 | * GNU General Public License for more details. | |
21 | * | |
22 | * You should have received a copy of the GNU General Public License | |
23 | * along with this program; if not, write to the Free Software | |
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
25 | * MA 02111-1307 USA | |
26 | */ | |
27 | ||
57cac1fa WD |
28 | /* |
29 | * To match the U-Boot user interface on ARM platforms to the U-Boot | |
30 | * standard (as on PPC platforms), some messages with debug character | |
31 | * are removed from the default U-Boot build. | |
32 | * | |
33 | * Define DEBUG here if you want additional info as shown below | |
34 | * printed upon startup: | |
35 | * | |
36 | * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274 | |
37 | * IRQ Stack: 00ebff7c | |
38 | * FIQ Stack: 00ebef7c | |
39 | */ | |
40 | ||
c609719b WD |
41 | #include <common.h> |
42 | #include <command.h> | |
3595ac49 | 43 | #include <malloc.h> |
c609719b WD |
44 | #include <devices.h> |
45 | #include <version.h> | |
46 | #include <net.h> | |
47 | ||
f39748ae WD |
48 | #ifdef CONFIG_DRIVER_SMC91111 |
49 | #include "../drivers/smc91111.h" | |
50 | #endif | |
51 | #ifdef CONFIG_DRIVER_LAN91C96 | |
52 | #include "../drivers/lan91c96.h" | |
53 | #endif | |
54 | ||