Config.in 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_19_X
  13. help
  14. Select the version of BusyBox you wish to use.
  15. config BR2_BUSYBOX_VERSION_1_16_X
  16. bool "BusyBox 1.16.x"
  17. depends on BR2_DEPRECATED
  18. config BR2_BUSYBOX_VERSION_1_17_X
  19. bool "BusyBox 1.17.x"
  20. depends on BR2_DEPRECATED
  21. config BR2_BUSYBOX_VERSION_1_18_X
  22. bool "BusyBox 1.18.x"
  23. config BR2_BUSYBOX_VERSION_1_19_X
  24. bool "BusyBox 1.19.x"
  25. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  26. bool "daily snapshot"
  27. endchoice
  28. config BR2_BUSYBOX_VERSION
  29. string
  30. default "1.16.2" if BR2_BUSYBOX_VERSION_1_16_X
  31. default "1.17.4" if BR2_BUSYBOX_VERSION_1_17_X
  32. default "1.18.5" if BR2_BUSYBOX_VERSION_1_18_X
  33. default "1.19.4" if BR2_BUSYBOX_VERSION_1_19_X
  34. config BR2_PACKAGE_BUSYBOX_CONFIG
  35. string "BusyBox configuration file to use?"
  36. default "package/busybox/busybox-1.19.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  37. default "package/busybox/busybox-1.16.x.config" if BR2_BUSYBOX_VERSION_1_16_X
  38. default "package/busybox/busybox-1.17.x.config" if BR2_BUSYBOX_VERSION_1_17_X
  39. default "package/busybox/busybox-1.18.x.config" if BR2_BUSYBOX_VERSION_1_18_X
  40. default "package/busybox/busybox-1.19.x.config" if BR2_BUSYBOX_VERSION_1_19_X
  41. help
  42. Some people may wish to use their own modified BusyBox configuration
  43. file, and will specify their config file location with this option.
  44. Most people will just use the default BusyBox configuration file.
  45. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  46. bool "Show packages that are also provided by busybox"
  47. help
  48. Show packages in menuconfig that are potentially also provided
  49. by busybox.
  50. endif
  51. if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
  52. # add dummy config so the stuff with busybox alternatives are shown
  53. # when busybox is disabled
  54. config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  55. default y
  56. endif