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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * include/local.h - local configuration options, board specific |
| 10 | */ |
| 11 | |
| 12 | #ifndef __LOCAL_H |
| 13 | #define __LOCAL_H |
| 14 | |
| 15 | /* |
| 16 | * High Level Configuration Options |
| 17 | * (easy to change) |
| 18 | */ |
| 19 | |
| 20 | /* This tells PPCBoot that the config options are compiled in */ |
| 21 | /* #undef ENV_IS_EMBEDDED */ |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 22 | /* Don't touch this! PPCBOOT figures this out based on other |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 23 | * magic. */ |
| 24 | |
| 25 | /* Uncomment and define any of the below options */ |
| 26 | |
| 27 | /* #define CONFIG_750CX */ /* The 750CX doesn't support as many things in L2CR */ |
| 28 | #define CONFIG_750FX /* The 750FX doesn't support as many things in L2CR like 750CX*/ |
| 29 | |
| 30 | /* These want string arguments */ |
| 31 | /* #define CONFIG_BOOTARGS */ |
| 32 | /* #define CONFIG_BOOTCOMMAND */ |
| 33 | /* #define CONFIG_RAMBOOTCOMMAND */ |
| 34 | /* #define CONFIG_NFSBOOTCOMMAND */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 35 | /* #define CONFIG_SYS_AUTOLOAD */ |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 36 | /* #define CONFIG_PREBOOT */ |
| 37 | |
| 38 | /* These don't */ |
| 39 | |
| 40 | /* #define CONFIG_BOOTDELAY */ |
| 41 | /* #define CONFIG_BAUDRATE */ |
| 42 | /* #define CONFIG_LOADS_ECHO */ |
| 43 | /* #define CONFIG_ETHADDR */ |
| 44 | /* #define CONFIG_ETH2ADDR */ |
| 45 | /* #define CONFIG_ETH3ADDR */ |
| 46 | /* #define CONFIG_IPADDR */ |
| 47 | /* #define CONFIG_SERVERIP */ |
| 48 | /* #define CONFIG_ROOTPATH */ |
| 49 | /* #define CONFIG_GATEWAYIP */ |
| 50 | /* #define CONFIG_NETMASK */ |
| 51 | /* #define CONFIG_HOSTNAME */ |
| 52 | /* #define CONFIG_BOOTFILE */ |
| 53 | /* #define CONFIG_LOADADDR */ |
| 54 | |
| 55 | /* these hardware addresses are pretty bogus, please change them to |
| 56 | suit your needs */ |
| 57 | |
| 58 | /* first ethernet */ |
| 59 | /* #define CONFIG_ETHADDR 86:06:2d:7e:c6:53 */ |
| 60 | #define CONFIG_ETHADDR 64:36:00:00:00:01 |
| 61 | |
| 62 | /* next two ethernet hwaddrs */ |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 63 | #define CONFIG_HAS_ETH1 |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 64 | #define CONFIG_ETH1ADDR 86:06:2d:7e:c6:54 |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 65 | #define CONFIG_HAS_ETH2 |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 66 | #define CONFIG_ETH2ADDR 86:06:2d:7e:c6:55 |
| 67 | |
| 68 | #define CONFIG_ENV_OVERWRITE |
| 69 | #endif /* __CONFIG_H */ |