Config.in 892 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Choose uClibc options
  2. #
  3. comment "uClibc Options"
  4. config BR2_UCLIBC_VERSION_SNAPSHOT
  5. bool "Use a daily snapshot of uClibc?"
  6. default y
  7. help
  8. Would you like to use a daily snapshot?
  9. config BR2_USE_UCLIBC_SNAPSHOT
  10. string "Date (yyyymmdd) of snapshot or 'snapshot' for latest"
  11. default "snapshot"
  12. depends on BR2_UCLIBC_VERSION_SNAPSHOT
  13. help
  14. Use latest snapshot or one from a specific date?
  15. config BR2_ENABLE_LOCALE
  16. bool "Enable locale/gettext/i18n support?"
  17. default n
  18. help
  19. Enable locale/gettext/i18n support?
  20. choice
  21. prompt "Thread library implementation"
  22. default BR2_PTHREADS_OLD
  23. help
  24. Select the version of libpthreads you want to use.
  25. config BR2_PTHREADS_NONE
  26. bool "none"
  27. config BR2_PTHREADS
  28. bool "linuxthreads"
  29. config BR2_PTHREADS_OLD
  30. bool "linuxthreads (stable/old)"
  31. config BR2_PTHREADS_NATIVE
  32. bool "Native POSIX Threading (NPTL)"
  33. endchoice