Config.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. menuconfig BR2_TARGET_UBOOT
  2. bool "U-Boot"
  3. help
  4. Build "Das U-Boot" Boot Monitor
  5. if BR2_TARGET_UBOOT
  6. config BR2_TARGET_UBOOT_BOARDNAME
  7. string "U-Boot board name"
  8. help
  9. One of U-Boot supported boards to be built.
  10. This will be suffixed with _config to meet U-Boot standard naming.
  11. choice
  12. prompt "U-Boot Version"
  13. default BR2_TARGET_UBOOT_2010_06
  14. help
  15. Select the specific U-Boot version you want to use
  16. config BR2_TARGET_UBOOT_2010_06
  17. bool "2010.06"
  18. config BR2_TARGET_UBOOT_2010_03
  19. bool "2010.03"
  20. config BR2_TARGET_UBOOT_2009_11
  21. bool "2009.11"
  22. config BR2_TARGET_UBOOT_2009_08
  23. bool "2009.08"
  24. config BR2_TARGET_UBOOT_CUSTOM_TARBALL
  25. bool "Custom tarball"
  26. endchoice
  27. if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  28. config BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION
  29. string "URL of custom U-Boot tarball"
  30. endif
  31. config BR2_TARGET_UBOOT_VERSION
  32. string
  33. default "2010.06" if BR2_TARGET_UBOOT_2010_06
  34. default "2010.03" if BR2_TARGET_UBOOT_2010_03
  35. default "2009.11" if BR2_TARGET_UBOOT_2009_11
  36. default "2009.08" if BR2_TARGET_UBOOT_2009_08
  37. default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  38. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  39. string "custom patch dir"
  40. help
  41. If your board requires custom patches, add the path to the
  42. directory containing the patches here. The patches must be
  43. named u-boot-<version>-<something>.patch.
  44. Most users may leave this empty
  45. choice
  46. prompt "U-Boot binary format"
  47. config BR2_TARGET_UBOOT_FORMAT_BIN
  48. bool "u-boot.bin"
  49. config BR2_TARGET_UBOOT_FORMAT_KWB
  50. depends on BR2_arm
  51. bool "u-boot.kwb (Marvell)"
  52. endchoice
  53. config BR2_TARGET_UBOOT_TOOL_MKIMAGE
  54. bool "mkimage tool in target"
  55. help
  56. Install mkimage tool in target.
  57. config BR2_TARGET_UBOOT_TOOL_ENV
  58. bool "fw_printenv tool in target"
  59. help
  60. Install fw_printenv / fw_setenv tools in target.
  61. menuconfig BR2_TARGET_UBOOT_NETWORK
  62. bool "Network Settings"
  63. default y
  64. help
  65. Network settings for U-boot
  66. if BR2_TARGET_UBOOT_NETWORK
  67. config BR2_TARGET_UBOOT_SERVERIP
  68. string "server ip"
  69. default "10.175.196.221"
  70. help
  71. TFTP server ip address
  72. config BR2_TARGET_UBOOT_IPADDR
  73. string "ip address"
  74. default "10.175.196.18"
  75. help
  76. Target ip address
  77. config BR2_TARGET_UBOOT_GATEWAY
  78. string "gateway ip"
  79. default "10.175.196.1"
  80. help
  81. Gateway ip address
  82. config BR2_TARGET_UBOOT_NETMASK
  83. string "netmask"
  84. default "255.255.255.0"
  85. help
  86. Network Mask
  87. config BR2_TARGET_UBOOT_ETHADDR
  88. string "ethernet address"
  89. default "04:25:fe:ed:00:18"
  90. help
  91. Target MAC address for the ethernet interface.
  92. This should be changed for production units
  93. config BR2_TARGET_UBOOT_ETH1ADDR
  94. string "ethernet 2 address"
  95. help
  96. Target MAC address for the second ethernet interface.
  97. endif # BR2_TARGET_UBOOT_NETWORK
  98. endif # BR2_TARGET_UBOOT