local.h 1.6 KB

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