Config.in 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_2_10_1
  16. bool "eglibc 2.10.1"
  17. config EGLIBC_VERSION_TRUNK
  18. bool "eglibc trunk"
  19. endchoice
  20. config EGLIBC_REVISION
  21. string
  22. prompt "eglibc revision"
  23. depends on TOOLCHAINOPTS && USE_EGLIBC
  24. default "5887" if EGLIBC_VERSION_2_6_1
  25. default "8588" if EGLIBC_VERSION_2_7
  26. default "8587" if EGLIBC_VERSION_2_8
  27. default "8690" if EGLIBC_VERSION_2_9
  28. default "8873" if EGLIBC_VERSION_2_10_1
  29. default "HEAD" if EGLIBC_VERSION_TRUNK
  30. default ""
  31. menu "eglibc configuration"
  32. depends on TOOLCHAINOPTS && USE_EGLIBC
  33. source toolchain/eglibc/config/Config.in
  34. endmenu