Config.h8300 490 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "h8300"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_BIG_ENDIAN
  12. select ARCH_HAS_NO_MMU
  13. select ARCH_HAS_NO_LDSO
  14. select HAVE_NO_PIC
  15. choice
  16. prompt "Target Processor"
  17. default CONFIG_H8300H
  18. help
  19. This is the processor type of your CPU.
  20. config CONFIG_H8300H
  21. bool "H8300H"
  22. config CONFIG_H8S
  23. bool "H8S (edosk2674)"
  24. endchoice