Config.in 3.1 KB

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