Config.in 2.0 KB

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