Config.in 843 B

12345678910111213141516171819202122232425262728293031323334
  1. # Choose uclibc version.
  2. choice
  3. prompt "uClibc Version"
  4. depends on TOOLCHAINOPTS && USE_UCLIBC
  5. default UCLIBC_VERSION_0_9_29
  6. help
  7. Select the version of uClibc you wish to use.
  8. Default for kernel 2.6 is 0.9.29, for kernel 2.4 it is 0.9.28 .
  9. config UCLIBC_VERSION_SNAPSHOT
  10. bool "uClibc snapshot"
  11. config UCLIBC_VERSION_0_9_28
  12. bool "uClibc 0.9.28"
  13. config UCLIBC_VERSION_0_9_29
  14. bool "uClibc 0.9.29"
  15. config UCLIBC_VERSION_0_9_30
  16. bool "uClibc 0.9.30"
  17. endchoice
  18. config UCLIBC_EXTRA_VERSION
  19. string
  20. prompt "Extra uClibc version"
  21. depends on TOOLCHAINOPTS && USE_UCLIBC
  22. default "snapshot" if UCLIBC_VERSION_SNAPSHOT
  23. default ".2" if UCLIBC_VERSION_0_9_28
  24. default ""
  25. help
  26. Default for version 0.9.28 is ".02", for daily snapshot it's just "snapshot"
  27. For all other versions the default string is empty.