Kconfig 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. menu "Integrator Options"
  2. depends on ARCH_INTEGRATOR
  3. choice
  4. prompt "Integrator platform select"
  5. optional
  6. config ARCH_INTEGRATOR_AP
  7. bool "Support Integrator/AP platform"
  8. config ARCH_INTEGRATOR_CP
  9. bool "Support Integrator/CP platform"
  10. select ARCH_CINTEGRATOR
  11. endchoice
  12. config ARCH_CINTEGRATOR
  13. bool
  14. choice
  15. prompt "Integrator core module select"
  16. optional
  17. config CM720T
  18. bool "Core Module for ARM720T"
  19. select CPU_ARM720T
  20. config CM920T
  21. bool "Core Module for ARM920T"
  22. select CPU_ARM920T
  23. config CM926EJ_S
  24. bool "Core Module for ARM926EJ-STM"
  25. select CPU_ARM926EJS
  26. config CM946ES
  27. bool "Core Module for ARM946E-STM"
  28. select CPU_ARM946ES
  29. config CM1136
  30. bool "Core Module for ARM1136JF-STM"
  31. select CPU_ARM1136
  32. endchoice
  33. config SYS_BOARD
  34. default "integrator"
  35. config SYS_VENDOR
  36. default "armltd"
  37. config SYS_CONFIG_NAME
  38. default "integratorap" if ARCH_INTEGRATOR_AP
  39. default "integratorcp" if ARCH_INTEGRATOR_CP
  40. config SYS_MALLOC_F_LEN
  41. default 0x2000
  42. endmenu