Config.in 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. if BR2_PACKAGE_BUSYBOX
  10. choice
  11. prompt "BusyBox Version"
  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.1" if BR2_BUSYBOX_VERSION_1_16_X
  39. config BR2_PACKAGE_BUSYBOX_FULLINSTALL
  40. bool "Run BusyBox's own full installation"
  41. default y
  42. help
  43. If you want to run BusyBox's own full install for the
  44. configured applets, then answer Y.
  45. This may overwrite files from other packages if your
  46. busybox includes replacement applets for the package.
  47. If you wish to just install /bin/busybox, then answer N.
  48. config BR2_PACKAGE_BUSYBOX_CONFIG
  49. string "BusyBox configuration file to use?"
  50. default "package/busybox/busybox-1.16.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  51. default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
  52. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
  53. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_14_X
  54. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_15_X
  55. default "package/busybox/busybox-1.16.x.config" if BR2_BUSYBOX_VERSION_1_16_X
  56. help
  57. Some people may wish to use their own modified BusyBox configuration
  58. file, and will specify their config file location with this option.
  59. Most people will just use the default BusyBox configuration file.
  60. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  61. bool "Show packages that are also provided by busybox" if BR2_PACKAGE_BUSYBOX
  62. help
  63. Show packages in menuconfig that are potentially also provided
  64. by busybox.
  65. config BR2_PACKAGE_BUSYBOX_SKELETON
  66. bool "use minimal target skeleton"
  67. help
  68. Use a minimal target skeleton. Make sure to select mdev
  69. which is used to populate /dev/.
  70. endif
  71. if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
  72. # add dummy config so the stuff with busybox alternatives are shown
  73. # when busybox is disabled
  74. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  75. default y
  76. endif