Config.in 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 BR2_PACKAGE_BUSYBOX
  12. default BR2_BUSYBOX_VERSION_1_9_X
  13. help
  14. Select the version of BusyBox you wish to use.
  15. config BR2_BUSYBOX_VERSION_1_2_2_1
  16. bool "BusyBox 1.2.2.1"
  17. depends on BR2_DEPRECATED
  18. config BR2_BUSYBOX_VERSION_1_6_1
  19. bool "BusyBox 1.6.1"
  20. depends on BR2_DEPRECATED
  21. config BR2_BUSYBOX_VERSION_1_7_X
  22. bool "BusyBox 1.7.x"
  23. depends on BR2_DEPRECATED || BR2_RECENT
  24. config BR2_BUSYBOX_VERSION_1_8_X
  25. bool "BusyBox 1.8.x"
  26. depends on BR2_DEPRECATED || BR2_RECENT
  27. config BR2_BUSYBOX_VERSION_1_9_X
  28. bool "BusyBox 1.9.x"
  29. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  30. bool "daily snapshot"
  31. endchoice
  32. config BR2_BUSYBOX_VERSION
  33. string
  34. default "1.2.2.1" if BR2_BUSYBOX_VERSION_1_2_2_1
  35. default "1.6.1" if BR2_BUSYBOX_VERSION_1_6_1
  36. default "1.7.4" if BR2_BUSYBOX_VERSION_1_7_X
  37. default "1.8.2" if BR2_BUSYBOX_VERSION_1_8_X
  38. default "1.9.0" if BR2_BUSYBOX_VERSION_1_9_X
  39. config BR2_PACKAGE_BUSYBOX_INSTALL_SYMLINKS
  40. bool "Install symlinks for BusyBox applets"
  41. depends BR2_PACKAGE_BUSYBOX
  42. default y
  43. help
  44. If you want to automatically install symlinks for all the
  45. supported applets to the busybox binary, 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 BR2_PACKAGE_BUSYBOX
  52. default "target/device/x86/i386/busybox.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  53. default "package/busybox/busybox-1.2.2.1.config" if BR2_BUSYBOX_VERSION_1_2_2_1
  54. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_6_1
  55. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_7_X
  56. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_8_X
  57. default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_9_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_HIDE_OTHERS
  63. bool "Hide applications that are provided by busybox"
  64. depends on BR2_PACKAGE_BUSYBOX
  65. default y if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  66. help
  67. Do not show packages in menuconfig that are potentially provided
  68. by busybox.
  69. config BR2_PACKAGE_BUSYBOX_SKELETON
  70. bool "use minimal target skeleton"
  71. depends on BR2_PACKAGE_BUSYBOX
  72. help
  73. Use a minimal target skeleton. Make sure to select mdev
  74. which is used to populate /dev/.
  75. #config BR2_PACKAGE_BUSYBOX_INITRAMFS
  76. # bool "initramfs perusing busybox"
  77. # depends on BR2_PACKAGE_BUSYBOX
  78. # help
  79. # Build small initramfs perusing busybox.