Config.in.sh 710 B

1234567891011121314151617181920212223242526272829303132333435
  1. choice
  2. prompt "Target Architecture Variant"
  3. default BR2_sh4
  4. depends on BR2_sh
  5. help
  6. Specific CPU variant to use
  7. config BR2_sh4
  8. bool "sh4 (SH4 little endian)"
  9. config BR2_sh4eb
  10. bool "sh4eb (SH4 big endian)"
  11. config BR2_sh4a
  12. bool "sh4a (SH4A little endian)"
  13. config BR2_sh4aeb
  14. bool "sh4aeb (SH4A big endian)"
  15. endchoice
  16. config BR2_ARCH
  17. default "sh4" if BR2_sh4
  18. default "sh4eb" if BR2_sh4eb
  19. default "sh4a" if BR2_sh4a
  20. default "sh4aeb" if BR2_sh4aeb
  21. config BR2_NORMALIZED_ARCH
  22. default "sh"
  23. config BR2_ENDIAN
  24. default "LITTLE" if BR2_sh4 || BR2_sh4a
  25. default "BIG" if BR2_sh4eb || BR2_sh4aeb
  26. config BR2_READELF_ARCH_NAME
  27. default "Renesas / SuperH SH"
  28. # vim: ft=kconfig
  29. # -*- mode:kconfig; -*-