Config.in 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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_16_X
  13. help
  14. Select the version of BusyBox you wish to use.
  15. config BR2_BUSYBOX_VERSION_1_12_X
  16. bool "BusyBox 1.12.x"
  17. depends on BR2_DEPRECATED
  18. config BR2_BUSYBOX_VERSION_1_13_X
  19. bool "BusyBox 1.13.x"
  20. depends on BR2_RECENT
  21. config BR2_BUSYBOX_VERSION_1_14_X
  22. bool "BusyBox 1.14.x"
  23. depends on BR2_DEPRECATED
  24. config BR2_BUSYBOX_VERSION_1_15_X
  25. bool "BusyBox 1.15.x"
  26. depends on BR2_DEPRECATED || BR2_RECENT
  27. config BR2_BUSYBOX_VERSION_1_16_X
  28. bool "BusyBox 1.16.x"
  29. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  30. bool "daily snapshot"
  31. endchoice
  32. config BR2_BUSYBOX_VERSION
  33. string
  34. default "1.12.4" if BR2_BUSYBOX_VERSION_1_12_X
  35. default "1.13.4" if BR2_BUSYBOX_VERSION_1_13_X
  36. default "1.14.4" if BR2_BUSYBOX_VERSION_1_14_X
  37. default "1.15.3" if BR2_BUSYBOX_VERSION_1_15_X
  38. default "1.16.0" if BR2_BUSYBOX_VERSION_1_16_X
  39. config BR2_PACKAGE_BUSYBOX_FULLINSTALL
  40. bool "Run BusyBox's own full installation"
  41. depends on BR2_PACKAGE_BUSYBOX
  42. default y
  43. help
  44. If you want to run BusyBox's own full install for the
  45. configured applets, then answer Y.
  46. This may overwrite files from other packages if your
  47. busybox includes replacement applets for the package.
  48. If you wish to just install /bin/busybox, then answer N.
  49. config BR2_PACKAGE_BUSYBOX_CONFIG
  50. string "BusyBox configuration file to use?"
  51. depends on BR2_PACKAGE_BUSYBOX
  52. default "package/busybox/busybox-1.13.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  53. default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
  54. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
  55. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_14_X
  56. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_15_X
  57. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_16_X
  58. help
  59. Some people may wish to use their own modified BusyBox configuration
  60. file, and will specify their config file location with this option.
  61. Most people will just use the default BusyBox configuration file.
  62. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  63. bool "Show packages that are also provided by busybox" if BR2_PACKAGE_BUSYBOX
  64. default y if !BR2_PACKAGE_BUSYBOX
  65. help
  66. Show packages in menuconfig that are potentially also provided
  67. by busybox.
  68. config BR2_PACKAGE_BUSYBOX_SKELETON
  69. bool "use minimal target skeleton"
  70. depends on BR2_PACKAGE_BUSYBOX
  71. help
  72. Use a minimal target skeleton. Make sure to select mdev
  73. which is used to populate /dev/.
  74. #config BR2_PACKAGE_BUSYBOX_INITRAMFS
  75. # bool "initramfs perusing busybox"
  76. # depends on BR2_PACKAGE_BUSYBOX
  77. # help
  78. # Build small initramfs perusing busybox.