Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_2011_03
  14. help
  15. Select the specific U-Boot version you want to use
  16. config BR2_TARGET_UBOOT_2011_03
  17. bool "2011.03"
  18. config BR2_TARGET_UBOOT_2010_12
  19. bool "2010.12"
  20. config BR2_TARGET_UBOOT_2010_09
  21. bool "2010.09"
  22. config BR2_TARGET_UBOOT_2010_06
  23. bool "2010.06"
  24. config BR2_TARGET_UBOOT_2010_03
  25. bool "2010.03"
  26. config BR2_TARGET_UBOOT_CUSTOM_TARBALL
  27. bool "Custom tarball"
  28. endchoice
  29. if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  30. config BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION
  31. string "URL of custom U-Boot tarball"
  32. endif
  33. config BR2_TARGET_UBOOT_VERSION
  34. string
  35. default "2011.03" if BR2_TARGET_UBOOT_2011_03
  36. default "2010.12" if BR2_TARGET_UBOOT_2010_12
  37. default "2010.09" if BR2_TARGET_UBOOT_2010_09
  38. default "2010.06" if BR2_TARGET_UBOOT_2010_06
  39. default "2010.03" if BR2_TARGET_UBOOT_2010_03
  40. default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
  41. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  42. string "custom patch dir"
  43. help
  44. If your board requires custom patches, add the path to the
  45. directory containing the patches here. The patches must be
  46. named u-boot-<version>-<something>.patch.
  47. Most users may leave this empty
  48. choice
  49. prompt "U-Boot binary format"
  50. config BR2_TARGET_UBOOT_FORMAT_BIN
  51. bool "u-boot.bin"
  52. config BR2_TARGET_UBOOT_FORMAT_KWB
  53. depends on BR2_arm
  54. bool "u-boot.kwb (Marvell)"
  55. config BR2_TARGET_UBOOT_FORMAT_LDR
  56. depends on BR2_bfin
  57. bool "u-boot.ldr"
  58. endchoice
  59. config BR2_TARGET_UBOOT_TOOL_MKIMAGE
  60. bool "mkimage tool in target"
  61. help
  62. Install mkimage tool in target.
  63. config BR2_TARGET_UBOOT_TOOL_ENV
  64. bool "fw_printenv tool in target"
  65. help
  66. Install fw_printenv / fw_setenv tools in target.
  67. menuconfig BR2_TARGET_UBOOT_NETWORK
  68. bool "Network Settings"
  69. default y
  70. help
  71. 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