Config.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. config 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_2011_09
  14. help
  15. Select the specific U-Boot version you want to use
  16. config BR2_TARGET_UBOOT_2011_09
  17. bool "2011.09"
  18. config BR2_TARGET_UBOOT_2011_06
  19. bool "2011.06"
  20. config BR2_TARGET_UBOOT_2011_03
  21. bool "2011.03"
  22. config BR2_TARGET_UBOOT_2010_12
  23. bool "2010.12"
  24. config BR2_TARGET_UBOOT_2010_09
  25. bool "2010.09"
  26. config BR2_TARGET_UBOOT_2010_06
  27. bool "2010.06"
  28. config BR2_TARGET_UBOOT_CUSTOM_TARBALL
  29. bool "Custom tarball"
  30. config BR2_TARGET_UBOOT_CUSTOM_GIT
  31. bool "Custom Git repository"
  32. endchoice
  33. if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  34. config BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION
  35. string "URL of custom U-Boot tarball"
  36. endif
  37. config BR2_TARGET_UBOOT_VERSION
  38. string
  39. default "2011.09" if BR2_TARGET_UBOOT_2011_09
  40. default "2011.06" if BR2_TARGET_UBOOT_2011_06
  41. default "2011.03" if BR2_TARGET_UBOOT_2011_03
  42. default "2010.12" if BR2_TARGET_UBOOT_2010_12
  43. default "2010.09" if BR2_TARGET_UBOOT_2010_09
  44. default "2010.06" if BR2_TARGET_UBOOT_2010_06
  45. default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  46. default $BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION if BR2_TARGET_UBOOT_CUSTOM_GIT
  47. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  48. string "custom patch dir"
  49. help
  50. If your board requires custom patches, add the path to the
  51. directory containing the patches here. The patches must be
  52. named uboot-<version>-<something>.patch.
  53. Most users may leave this empty
  54. if BR2_TARGET_UBOOT_CUSTOM_GIT
  55. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  56. string "URL of custom Git repository"
  57. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  58. string "Custom Git version"
  59. endif
  60. choice
  61. prompt "U-Boot binary format"
  62. config BR2_TARGET_UBOOT_FORMAT_BIN
  63. bool "u-boot.bin"
  64. config BR2_TARGET_UBOOT_FORMAT_NAND_BIN
  65. bool "u-boot-nand.bin"
  66. config BR2_TARGET_UBOOT_FORMAT_KWB
  67. depends on BR2_arm
  68. bool "u-boot.kwb (Marvell)"
  69. config BR2_TARGET_UBOOT_FORMAT_LDR
  70. depends on BR2_bfin
  71. bool "u-boot.ldr"
  72. endchoice
  73. menuconfig BR2_TARGET_UBOOT_NETWORK
  74. bool "Custom Network Settings"
  75. help
  76. Custom network settings for U-boot
  77. if BR2_TARGET_UBOOT_NETWORK
  78. config BR2_TARGET_UBOOT_SERVERIP
  79. string "server ip"
  80. default "10.175.196.221"
  81. help
  82. TFTP server ip address
  83. config BR2_TARGET_UBOOT_IPADDR
  84. string "ip address"
  85. default "10.175.196.18"
  86. help
  87. Target ip address
  88. config BR2_TARGET_UBOOT_GATEWAY
  89. string "gateway ip"
  90. default "10.175.196.1"
  91. help
  92. Gateway ip address
  93. config BR2_TARGET_UBOOT_NETMASK
  94. string "netmask"
  95. default "255.255.255.0"
  96. help
  97. Network Mask
  98. config BR2_TARGET_UBOOT_ETHADDR
  99. string "ethernet address"
  100. default "04:25:fe:ed:00:18"
  101. help
  102. Target MAC address for the ethernet interface.
  103. This should be changed for production units
  104. config BR2_TARGET_UBOOT_ETH1ADDR
  105. string "ethernet 2 address"
  106. help
  107. Target MAC address for the second ethernet interface.
  108. endif # BR2_TARGET_UBOOT_NETWORK
  109. endif # BR2_TARGET_UBOOT