Config.in.sparc 756 B

12345678910111213141516171819202122232425262728293031323334353637
  1. choice
  2. prompt "Target Architecture Variant"
  3. default BR2_sparc_v8 if BR2_sparc
  4. default BR2_sparc_v9 if BR2_sparc64
  5. depends on BR2_sparc || BR2_sparc64
  6. help
  7. Specific CPU variant to use
  8. config BR2_sparc_v8
  9. bool "v8"
  10. depends on BR2_sparc
  11. config BR2_sparc_leon3
  12. bool "leon3"
  13. depends on BR2_sparc
  14. config BR2_sparc_v9
  15. bool "v9"
  16. depends on BR2_sparc64
  17. endchoice
  18. config BR2_ARCH
  19. default "sparc" if BR2_sparc
  20. default "sparc64" if BR2_sparc64
  21. config BR2_ENDIAN
  22. default "BIG"
  23. config BR2_GCC_TARGET_CPU
  24. default "leon3" if BR2_sparc_leon3
  25. default "v8" if BR2_sparc_v8
  26. default "ultrasparc" if BR2_sparc_v9
  27. config BR2_READELF_ARCH_NAME
  28. default "Sparc" if BR2_sparc
  29. default "Sparc v9" if BR2_sparc64
  30. # vim: ft=kconfig
  31. # -*- mode:kconfig; -*-