Config.in 2.9 KB

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