stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 3 | * Ingo Assmus <ingo.assmus@keymile.com> |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * include/local.h - local configuration options, board specific |
| 26 | */ |
| 27 | |
| 28 | #ifndef __LOCAL_H |
| 29 | #define __LOCAL_H |
| 30 | |
| 31 | /* |
| 32 | * High Level Configuration Options |
| 33 | * (easy to change) |
| 34 | */ |
| 35 | |
| 36 | /* This tells PPCBoot that the config options are compiled in */ |
| 37 | /* #undef ENV_IS_EMBEDDED */ |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 38 | /* Don't touch this! PPCBOOT figures this out based on other |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 39 | * magic. */ |
| 40 | |
| 41 | /* Uncomment and define any of the below options */ |
| 42 | |
| 43 | /* #define CONFIG_750CX */ /* The 750CX doesn't support as many things in L2CR */ |
| 44 | #define CONFIG_750FX /* The 750FX doesn't support as many things in L2CR like 750CX*/ |
| 45 | |
| 46 | /* These want string arguments */ |
| 47 | /* #define CONFIG_BOOTARGS */ |
| 48 | /* #define CONFIG_BOOTCOMMAND */ |
| 49 | /* #define CONFIG_RAMBOOTCOMMAND */ |
| 50 | /* #define CONFIG_NFSBOOTCOMMAND */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | /* #define CONFIG_SYS_AUTOLOAD */ |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 52 | /* #define CONFIG_PREBOOT */ |
| 53 | |
| 54 | /* These don't */ |
| 55 | |
| 56 | /* #define CONFIG_BOOTDELAY */ |
| 57 | /* #define CONFIG_BAUDRATE */ |
| 58 | /* #define CONFIG_LOADS_ECHO */ |
| 59 | /* #define CONFIG_ETHADDR */ |
| 60 | /* #define CONFIG_ETH2ADDR */ |
| 61 | /* #define CONFIG_ETH3ADDR */ |
| 62 | /* #define CONFIG_IPADDR */ |
| 63 | /* #define CONFIG_SERVERIP */ |
| 64 | /* #define CONFIG_ROOTPATH */ |
| 65 | /* #define CONFIG_GATEWAYIP */ |
| 66 | /* #define CONFIG_NETMASK */ |
| 67 | /* #define CONFIG_HOSTNAME */ |
| 68 | /* #define CONFIG_BOOTFILE */ |
| 69 | /* #define CONFIG_LOADADDR */ |
| 70 | |
| 71 | /* these hardware addresses are pretty bogus, please change them to |
| 72 | suit your needs */ |
| 73 | |
| 74 | /* first ethernet */ |
| 75 | /* #define CONFIG_ETHADDR 86:06:2d:7e:c6:53 */ |
| 76 | #define CONFIG_ETHADDR 64:36:00:00:00:01 |
| 77 | |
| 78 | /* next two ethernet hwaddrs */ |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 79 | #define CONFIG_HAS_ETH1 |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 80 | #define CONFIG_ETH1ADDR 86:06:2d:7e:c6:54 |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 81 | #define CONFIG_HAS_ETH2 |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 82 | #define CONFIG_ETH2ADDR 86:06:2d:7e:c6:55 |
| 83 | |
| 84 | #define CONFIG_ENV_OVERWRITE |
| 85 | #endif /* __CONFIG_H */ |