blob: 084f99f7171a73d0c31f38d4589df967bc5e942e [file] [log] [blame]
stroese771e05b2004-12-16 18:21:17 +00001/*
2 * (C) Copyright 2003
wdenkefe2a4d2004-12-16 21:44:03 +00003 * Ingo Assmus <ingo.assmus@keymile.com>
stroese771e05b2004-12-16 18:21:17 +00004 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
stroese771e05b2004-12-16 18:21:17 +00006 */
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 */
wdenkefe2a4d2004-12-16 21:44:03 +000022/* Don't touch this! PPCBOOT figures this out based on other
stroese771e05b2004-12-16 18:21:17 +000023 * 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-VILLARD6d0f6bc2008-10-16 15:01:15 +020035/* #define CONFIG_SYS_AUTOLOAD */
stroese771e05b2004-12-16 18:21:17 +000036/* #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 */
wdenke2ffd592004-12-31 09:32:47 +000063#define CONFIG_HAS_ETH1
stroese771e05b2004-12-16 18:21:17 +000064#define CONFIG_ETH1ADDR 86:06:2d:7e:c6:54
wdenke2ffd592004-12-31 09:32:47 +000065#define CONFIG_HAS_ETH2
stroese771e05b2004-12-16 18:21:17 +000066#define CONFIG_ETH2ADDR 86:06:2d:7e:c6:55
67
68#define CONFIG_ENV_OVERWRITE
69#endif /* __CONFIG_H */