Config.in.sh 756 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_sh2a
  8. bool "sh2a (SH2A big endian)"
  9. config BR2_sh4
  10. bool "sh4 (SH4 little endian)"
  11. config BR2_sh4eb
  12. bool "sh4eb (SH4 big endian)"
  13. config BR2_sh4a
  14. bool "sh4a (SH4A little endian)"
  15. config BR2_sh4aeb
  16. bool "sh4aeb (SH4A big endian)"
  17. endchoice
  18. config BR2_ARCH
  19. default "sh2a" if BR2_sh2a
  20. default "sh4" if BR2_sh4
  21. default "sh4eb" if BR2_sh4eb
  22. default "sh4a" if BR2_sh4a
  23. default "sh4aeb" if BR2_sh4aeb
  24. config BR2_ENDIAN
  25. default "LITTLE" if BR2_sh4 || BR2_sh4a
  26. default "BIG" if BR2_sh2a || BR2_sh4eb || BR2_sh4aeb
  27. config BR2_READELF_ARCH_NAME
  28. default "Renesas / SuperH SH"
  29. # vim: ft=kconfig
  30. # -*- mode:kconfig; -*-