Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. config BR2_PACKAGE_COREUTILS
  2. bool "coreutils"
  3. depends on BR2_USE_WCHAR
  4. depends on BR2_USE_MMU # fork()
  5. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  6. help
  7. All of the basic file/text/shell utilities. These are the
  8. core utilities which are expected to exist on every system.
  9. BusyBox implements many of the most common.
  10. Things like:
  11. - chmod, cp, dd, dir, ls, etc...
  12. - sort, tr, head, tail, wc, etc...
  13. - whoami, who, etc...
  14. http://www.gnu.org/software/coreutils/
  15. if BR2_PACKAGE_COREUTILS
  16. config BR2_PACKAGE_COREUTILS_INDIVIDUAL_BINARIES
  17. bool "Individual binaries"
  18. depends on !BR2_STATIC_LIBS
  19. help
  20. By default (i.e. with this option disabled), coreutils is
  21. installed as a single binary (Busybox style) called
  22. /usr/bin/coreutils, and all core utilities are symbolic
  23. links to this binary.
  24. With this option enabled, each utility is a separate binary.
  25. comment "coreutils individual binaries need a toolchain w/ dynamic library"
  26. depends on BR2_STATIC_LIBS
  27. endif
  28. comment "coreutils needs a toolchain w/ wchar"
  29. depends on BR2_USE_MMU
  30. depends on !BR2_USE_WCHAR
  31. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS