uboot/board/evb64260/local.h
<<
>>
Prefs
   1/*
   2 * include/local.h - local configuration options, board specific
   3 */
   4
   5#ifndef __LOCAL_H
   6#define __LOCAL_H
   7
   8/*
   9 * High Level Configuration Options
  10 * (easy to change)
  11 */
  12
  13/* This tells U-Boot that the config options are compiled in */
  14/* #undef ENV_IS_EMBEDDED */
  15/* Don't touch this! U-Boot figures this out  based on other
  16 * magic. */
  17
  18/* Uncomment and define any of the below options */
  19
  20/* #define CONFIG_750CX */ /* The 750CX doesn't support as many things in L2CR */
  21                        /* Note: If you defined CONFIG_EVB64260_750CX this */
  22                        /* gets defined automatically. */
  23
  24/* These want string arguments */
  25/* #define CONFIG_BOOTARGS */
  26/* #define CONFIG_BOOTCOMMAND */
  27/* #define CONFIG_RAMBOOTCOMMAND */
  28/* #define CONFIG_NFSBOOTCOMMAND */
  29/* #define CONFIG_SYS_AUTOLOAD */
  30/* #define CONFIG_PREBOOT */
  31
  32/* These don't */
  33
  34/* #define CONFIG_BOOTDELAY  */
  35/* #define CONFIG_BAUDRATE */
  36/* #define CONFIG_LOADS_ECHO */
  37/* #define CONFIG_ETHADDR */
  38/* #define CONFIG_ETH2ADDR */
  39/* #define CONFIG_ETH3ADDR */
  40/* #define CONFIG_IPADDR */
  41/* #define CONFIG_SERVERIP */
  42/* #define CONFIG_ROOTPATH */
  43/* #define CONFIG_GATEWAYIP */
  44/* #define CONFIG_NETMASK */
  45/* #define CONFIG_HOSTNAME */
  46/* #define CONFIG_BOOTFILE */
  47/* #define CONFIG_LOADADDR */
  48
  49/* these hardware addresses are pretty bogus, please change them to
  50   suit your needs */
  51
  52/* first ethernet */
  53#define CONFIG_ETHADDR          00:11:22:33:44:55
  54
  55/* next two ethernet hwaddrs */
  56#define CONFIG_HAS_ETH1
  57#define CONFIG_ETH1ADDR         00:11:22:33:44:66
  58#define CONFIG_HAS_ETH2
  59#define CONFIG_ETH2ADDR         00:11:22:33:44:77
  60
  61#define CONFIG_ENV_OVERWRITE
  62#endif  /* __CONFIG_H */
  63