Config.in 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_17_X
  13. help
  14. Select the version of BusyBox you wish to use.
  15. config BR2_BUSYBOX_VERSION_1_13_X
  16. bool "BusyBox 1.13.x"
  17. depends on BR2_DEPRECATED
  18. config BR2_BUSYBOX_VERSION_1_14_X
  19. bool "BusyBox 1.14.x"
  20. depends on BR2_DEPRECATED
  21. config BR2_BUSYBOX_VERSION_1_15_X
  22. bool "BusyBox 1.15.x"
  23. config BR2_BUSYBOX_VERSION_1_16_X
  24. bool "BusyBox 1.16.x"
  25. config BR2_BUSYBOX_VERSION_1_17_X
  26. bool "BusyBox 1.17.x"
  27. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  28. bool "daily snapshot"
  29. endchoice
  30. config BR2_BUSYBOX_VERSION
  31. string
  32. default "1.13.4" if BR2_BUSYBOX_VERSION_1_13_X
  33. default "1.14.4" if BR2_BUSYBOX_VERSION_1_14_X
  34. default "1.15.3" if BR2_BUSYBOX_VERSION_1_15_X
  35. default "1.16.2" if BR2_BUSYBOX_VERSION_1_16_X
  36. default "1.17.3" if BR2_BUSYBOX_VERSION_1_17_X
  37. config BR2_PACKAGE_BUSYBOX_FULLINSTALL
  38. bool "Run BusyBox's own full installation"
  39. default y
  40. help
  41. If you want to run BusyBox's own full install for the
  42. configured applets, then answer Y.
  43. This may overwrite files from other packages if your
  44. busybox includes replacement applets for the package.
  45. If you wish to just install /bin/busybox, then answer N.
  46. config BR2_PACKAGE_BUSYBOX_CONFIG
  47. string "BusyBox configuration file to use?"
  48. default "package/busybox/busybox-1.17.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  49. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
  50. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_14_X
  51. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_15_X
  52. default "package/busybox/busybox-1.16.x.config" if BR2_BUSYBOX_VERSION_1_16_X
  53. default "package/busybox/busybox-1.17.x.config" if BR2_BUSYBOX_VERSION_1_17_X
  54. help
  55. Some people may wish to use their own modified BusyBox configuration
  56. file, and will specify their config file location with this option.
  57. Most people will just use the default BusyBox configuration file.
  58. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  59. bool "Show packages that are also provided by busybox" if BR2_PACKAGE_BUSYBOX
  60. help
  61. Show packages in menuconfig that are potentially also provided
  62. by busybox.
  63. endif
  64. if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
  65. # add dummy config so the stuff with busybox alternatives are shown
  66. # when busybox is disabled
  67. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  68. default y
  69. endif