Config.in 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. choice
  2. prompt "Barebox configuration"
  3. default BR2_TARGET_BAREBOX_USE_DEFCONFIG
  4. config BR2_TARGET_BAREBOX_USE_DEFCONFIG
  5. bool "Using a defconfig"
  6. config BR2_TARGET_BAREBOX_USE_CUSTOM_CONFIG
  7. bool "Using a custom config file"
  8. endchoice
  9. config BR2_TARGET_BAREBOX_BOARD_DEFCONFIG
  10. string "board defconfig"
  11. depends on BR2_TARGET_BAREBOX_USE_DEFCONFIG
  12. help
  13. Name of the board for which Barebox should be built, without
  14. the _defconfig suffix.
  15. config BR2_TARGET_BAREBOX_CUSTOM_CONFIG_FILE
  16. string "Configuration file path"
  17. depends on BR2_TARGET_BAREBOX_USE_CUSTOM_CONFIG
  18. help
  19. Path to the barebox configuration file
  20. config BR2_TARGET_BAREBOX_CONFIG_FRAGMENT_FILES
  21. string "Additional configuration fragment files"
  22. help
  23. A space-separated list of configuration fragment files,
  24. that will be merged to the main Barebox configuration file.
  25. config BR2_TARGET_BAREBOX_IMAGE_FILE
  26. string "Image file names"
  27. help
  28. Space-separated list of barebox images which will be copied to
  29. the images directory.
  30. If left empty, defaults to:
  31. - barebox.bin for barebox versions older than 2012.10.
  32. - barebox-flash-image for later versions.
  33. config BR2_TARGET_BAREBOX_BAREBOXENV
  34. bool "bareboxenv tool in target"
  35. help
  36. Install bareboxenv tool in target.
  37. config BR2_TARGET_BAREBOX_CUSTOM_ENV
  38. bool "Generate an environment image"
  39. help
  40. Generate a custom environment image. This environment will
  41. contain the variables and scripts to be used at boot by
  42. barebox.
  43. config BR2_TARGET_BAREBOX_CUSTOM_ENV_PATH
  44. string "Environment path"
  45. depends on BR2_TARGET_BAREBOX_CUSTOM_ENV
  46. help
  47. Path to the directory containing the custom barebox
  48. environment. Depending on your setup, it will probably be
  49. based on either the content of the defaultenv or
  50. defaultenv-2 directories in the barebox source code, plus
  51. the additions needed. The output will be an image in the
  52. barebox devfs format, stored in the images directory, with
  53. the same name as the directory name given here.
  54. config BR2_TARGET_BAREBOX_CUSTOM_EMBEDDED_ENV_PATH
  55. string "Embedded environment path"
  56. help
  57. If this option is not empty, it is the path to a custom
  58. embedded barebox environment. This image will be used when
  59. the environment found in the environment sector is
  60. invalid. This option sets the barebox Kconfig option
  61. CONFIG_DEFAULT_ENVIRONMENT_PATH to the specified path. This
  62. way it is possible to use Buildroot variables like
  63. TOPDIR etc. to refer to the custom environment.
  64. Depending on your setup, the custom embedded environment
  65. will probably be based on either the content of the
  66. defaultenv or defaultenv-2 directories in the barebox source
  67. code.