local.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * (C) Copyright 2003
  3. * Ingo Assmus <ingo.assmus@keymile.com>
  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. * include/local.h - local configuration options, board specific
  25. */
  26. #ifndef __LOCAL_H
  27. #define __LOCAL_H
  28. /*
  29. * High Level Configuration Options
  30. * (easy to change)
  31. */
  32. /* This tells PPCBoot that the config options are compiled in */
  33. /* #undef ENV_IS_EMBEDDED */
  34. /* Don't touch this! PPCBOOT figures this out based on other
  35. * magic. */
  36. /* Uncomment and define any of the below options */
  37. /* #define CONFIG_750CX */ /* The 750CX doesn't support as many things in L2CR */
  38. #define CONFIG_750FX /* The 750FX doesn't support as many things in L2CR like 750CX*/
  39. /* These want string arguments */
  40. /* #define CONFIG_BOOTARGS */
  41. /* #define CONFIG_BOOTCOMMAND */
  42. /* #define CONFIG_RAMBOOTCOMMAND */
  43. /* #define CONFIG_NFSBOOTCOMMAND */
  44. /* #define CFG_AUTOLOAD */
  45. /* #define CONFIG_PREBOOT */
  46. /* These don't */
  47. /* #define CONFIG_BOOTDELAY */
  48. /* #define CONFIG_BAUDRATE */
  49. /* #define CONFIG_LOADS_ECHO */
  50. /* #define CONFIG_ETHADDR */
  51. /* #define CONFIG_ETH2ADDR */
  52. /* #define CONFIG_ETH3ADDR */
  53. /* #define CONFIG_IPADDR */
  54. /* #define CONFIG_SERVERIP */
  55. /* #define CONFIG_ROOTPATH */
  56. /* #define CONFIG_GATEWAYIP */
  57. /* #define CONFIG_NETMASK */
  58. /* #define CONFIG_HOSTNAME */
  59. /* #define CONFIG_BOOTFILE */
  60. /* #define CONFIG_LOADADDR */
  61. /* these hardware addresses are pretty bogus, please change them to
  62. suit your needs */
  63. /* first ethernet */
  64. /* #define CONFIG_ETHADDR 86:06:2d:7e:c6:53 */
  65. #define CONFIG_ETHADDR 64:36:00:00:00:01
  66. /* next two ethernet hwaddrs */
  67. #define CONFIG_ETH1ADDR 86:06:2d:7e:c6:54
  68. #define CONFIG_ETH2ADDR 86:06:2d:7e:c6:55
  69. #define CONFIG_ENV_OVERWRITE
  70. #endif /* __CONFIG_H */