Config.h8300 649 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. source "extra/Configs/Config.in.arches"
  9. menu "Target Architecture Features and Options"
  10. source "extra/Configs/Config.in.arch"
  11. config FORCE_OPTIONS_FOR_ARCH
  12. bool
  13. default y
  14. select ARCH_ANY_ENDIAN
  15. select ARCH_HAS_NO_MMU
  16. choice
  17. prompt "Target Processor"
  18. default CONFIG_H8300H
  19. help
  20. This is the processor type of your CPU.
  21. config CONFIG_H8300H
  22. bool "H8300H"
  23. config CONFIG_H8S
  24. bool "H8S (edosk2674)"
  25. endchoice
  26. config ARCH_CFLAGS
  27. string
  28. endmenu
  29. source "extra/Configs/Config.in.common"