Config.in 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 on BR2_PACKAGE_BUSYBOX
  12. default BR2_BUSYBOX_VERSION_1_14_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_DEPRECATED || BR2_RECENT
  21. config BR2_BUSYBOX_VERSION_1_14_X
  22. bool "BusyBox 1.14.x"
  23. config BR2_PACKAGE_BUSYBOX_SNAPSHOT
  24. bool "daily snapshot"
  25. endchoice
  26. config BR2_BUSYBOX_VERSION
  27. string
  28. default "1.12.4" if BR2_BUSYBOX_VERSION_1_12_X
  29. default "1.13.4" if BR2_BUSYBOX_VERSION_1_13_X
  30. default "1.14.2" if BR2_BUSYBOX_VERSION_1_14_X
  31. config BR2_PACKAGE_BUSYBOX_FULLINSTALL
  32. bool "Run BusyBox's own full installation"
  33. depends on BR2_PACKAGE_BUSYBOX
  34. default y
  35. help
  36. If you want to run BusyBox's own full install for the
  37. configured applets, then answer Y.
  38. This may overwrite files from other packages if your
  39. busybox includes replacement applets for the package.
  40. If you wish to just install /bin/busybox, then answer N.
  41. config BR2_PACKAGE_BUSYBOX_CONFIG
  42. string "BusyBox configuration file to use?"
  43. depends on BR2_PACKAGE_BUSYBOX
  44. default "target/device/x86/i386/busybox.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
  45. default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
  46. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
  47. default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_14_X
  48. help
  49. Some people may wish to use their own modified BusyBox configuration
  50. file, and will specify their config file location with this option.
  51. Most people will just use the default BusyBox configuration file.
  52. config BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
  53. bool "Hide applications that are provided by busybox"
  54. depends on BR2_PACKAGE_BUSYBOX
  55. default y
  56. help
  57. Do not show packages in menuconfig that are potentially provided
  58. by busybox.
  59. config BR2_PACKAGE_BUSYBOX_SKELETON
  60. bool "use minimal target skeleton"
  61. depends on BR2_PACKAGE_BUSYBOX
  62. help
  63. Use a minimal target skeleton. Make sure to select mdev
  64. which is used to populate /dev/.
  65. #config BR2_PACKAGE_BUSYBOX_INITRAMFS
  66. # bool "initramfs perusing busybox"
  67. # depends on BR2_PACKAGE_BUSYBOX
  68. # help
  69. # Build small initramfs perusing busybox.