Config.in 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 "Network Settings"
  70. default y
  71. help
  72. Network settings for U-boot
  73. if BR2_TARGET_UBOOT_NETWORK
  74. config BR2_TARGET_UBOOT_SERVERIP
  75. string "server ip"
  76. default "10.175.196.221"
  77. help
  78. TFTP server ip address
  79. config BR2_TARGET_UBOOT_IPADDR
  80. string "ip address"
  81. default "10.175.196.18"
  82. help
  83. Target ip address
  84. config BR2_TARGET_UBOOT_GATEWAY
  85. string "gateway ip"
  86. default "10.175.196.1"
  87. help
  88. Gateway ip address
  89. config BR2_TARGET_UBOOT_NETMASK
  90. string "netmask"
  91. default "255.255.255.0"
  92. help
  93. Network Mask
  94. config BR2_TARGET_UBOOT_ETHADDR
  95. string "ethernet address"
  96. default "04:25:fe:ed:00:18"
  97. help
  98. Target MAC address for the ethernet interface.
  99. This should be changed for production units
  100. config BR2_TARGET_UBOOT_ETH1ADDR
  101. string "ethernet 2 address"
  102. help
  103. Target MAC address for the second ethernet interface.
  104. endif # BR2_TARGET_UBOOT_NETWORK
  105. endif # BR2_TARGET_UBOOT