Config.in 844 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. choice
  2. prompt "eglibc version"
  3. depends on TOOLCHAINOPTS && USE_EGLIBC
  4. default EGLIBC_VERSION_2_8
  5. help
  6. Select the version of eglibc you wish to use.
  7. config EGLIBC_VERSION_2_6_1
  8. bool "eglibc 2.6.1"
  9. config EGLIBC_VERSION_2_7
  10. bool "eglibc 2.7"
  11. config EGLIBC_VERSION_2_8
  12. bool "eglibc 2.8"
  13. config EGLIBC_VERSION_2_9
  14. bool "eglibc 2.9"
  15. config EGLIBC_VERSION_TRUNK
  16. bool "eglibc trunk"
  17. endchoice
  18. config EGLIBC_REVISION
  19. string
  20. prompt "eglibc revision"
  21. depends on TOOLCHAINOPTS && USE_EGLIBC
  22. default "5887" if EGLIBC_VERSION_2_6_1
  23. default "5886" if EGLIBC_VERSION_2_7
  24. default "6913" if EGLIBC_VERSION_2_8
  25. default "7430" if EGLIBC_VERSION_2_9
  26. default "HEAD" if EGLIBC_VERSION_TRUNK
  27. default ""
  28. menu "eglibc configuration"
  29. depends on TOOLCHAINOPTS && USE_EGLIBC
  30. source toolchain/eglibc/config/Config.in
  31. endmenu