Config.in 743 B

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