Config.in 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. config BR2_PACKAGE_BUSYBOX
  2. bool "BusyBox"
  3. default y
  4. help
  5. The Swiss Army Knife of embedded Linux. It slices, it dices, it
  6. makes Julian Fries.
  7. http://busybox.net/
  8. Most people will answer Y.
  9. choice
  10. prompt "BusyBox Version"
  11. depends on BR2_PACKAGE_BUSYBOX
  12. default BR2_BUSYBOX_VERSION_1_13_X
  13. help
  14. Select the version of BusyBox you wish to use.
  15. config BR2_BUSYBOX_VERSION_1_2_2_1
  16. bool "BusyBox 1.2.2.1"
  17. depends on BR2_DEPRECATED
  18. config BR2_BUSYBOX_VERSION_1_6_1
  19. bool "BusyBox 1.6.1"
  20. depends on BR2_DEPRECATED
  21. config BR2_BUSYBOX_VERSION_1_7_X
  22. bool "BusyBox 1.7.x"
  23. depends on BR2_DEPRECATED
  24. config BR2_BUSYBOX_VERSION_1_8_X
  25. bool "BusyBox 1.8.x"
  26. depends on BR2_DEPRECATED
  27. config BR2_BUSYBOX_VERSION_1_9_X
  28. bool "BusyBox 1.9.x"
  29. depends on BR2_DEPRECATED
  30. config BR2_BUSYBOX_VERSION_1_10_X
  31. bool "BusyBox 1.10.x"
  32. depends on BR2_DEPRECATED
  33. config BR2_BUSYBOX_VERSION_1_11_X
  34. bool "BusyBox 1.11.x"
  35. depends on BR2_DEPRECATED
  36. config BR2_BUSYBOX_VERSION_1_12_X
  37. bool "BusyBox 1.12.x"
  38. depends on BR2_DEPRECATED || BR2_RECENT
  39. config BR2_BUSYBOX_VERSION_1_13_X
  40. bool "BusyBox 1.13.x"
  41. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  42. bool "daily snapshot"
  43. endchoice
  44. config BR2_BUSYBOX_VERSION
  45. string
  46. default "1.2.2.1" if BR2_BUSYBOX_VERSION_1_2_2_1
  47. default "1.6.1" if BR2_BUSYBOX_VERSION_1_6_1
  48. default "1.7.5" if BR2_BUSYBOX_VERSION_1_7_X
  49. default "1.8.3" if BR2_BUSYBOX_VERSION_1_8_X
  50. default "1.9.2" if BR2_BUSYBOX_VERSION_1_9_X
  51. default "1.10.4" if BR2_BUSYBOX_VERSION_1_10_X
  52. default "1.11.3" if BR2_BUSYBOX_VERSION_1_11_X
  53. default "1.12.4" if BR2_BUSYBOX_VERSION_1_12_X
  54. default "1.13.2" if BR2_BUSYBOX_VERSION_1_13_X
  55. config BR2_PACKAGE_BUSYBOX_FULLINSTALL
  56. bool "Run BusyBox's own full installation"
  57. depends on BR2_PACKAGE_BUSYBOX
  58. default y
  59. help
  60. If you want to run BusyBox's own full install for the
  61. configured applets, then answer Y.
  62. This may overwrite files from other packages if your
  63. busybox includes replacement applets for the package.
  64. If you wish to just install /bin/busybox, then answer N.
  65. config BR2_PACKAGE_BUSYBOX_CONFIG
  66. string "BusyBox configuration file to use?"
  67. depends on BR2_PACKAGE_BUSYBOX
  68. default "target/device/x86/i386/busybox.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  69. default "package/busybox/busybox-1.2.2.1.config" if BR2_BUSYBOX_VERSION_1_2_2_1
  70. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_6_1
  71. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_7_X
  72. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_8_X
  73. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_9_X
  74. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_10_X
  75. default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_11_X
  76. default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
  77. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
  78. help
  79. Some people may wish to use their own modified BusyBox configuration
  80. file, and will specify their config file location with this option.
  81. Most people will just use the default BusyBox configuration file.
  82. config BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
  83. bool "Hide applications that are provided by busybox"
  84. depends on BR2_PACKAGE_BUSYBOX
  85. default y
  86. help
  87. Do not show packages in menuconfig that are potentially provided
  88. by busybox.
  89. config BR2_PACKAGE_BUSYBOX_SKELETON
  90. bool "use minimal target skeleton"
  91. depends on BR2_PACKAGE_BUSYBOX
  92. help
  93. Use a minimal target skeleton. Make sure to select mdev
  94. which is used to populate /dev/.
  95. #config BR2_PACKAGE_BUSYBOX_INITRAMFS
  96. # bool "initramfs perusing busybox"
  97. # depends on BR2_PACKAGE_BUSYBOX
  98. # help
  99. # Build small initramfs perusing busybox.